Last active
March 10, 2026 20:30
-
-
Save wkliwk/7de8a89f60fa09e3c88869d8254298b8 to your computer and use it in GitHub Desktop.
Revisions
-
wkliwk renamed this gist
Apr 22, 2021 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,11 +18,11 @@ kill $(ps aux | grep 'BetterTouchTool' | awk '{print $2}') echo "Done" echo "uninstall BetterTouchTool" brew uninstall --cask bettertouchtool echo "Done" echo "install BetterTouchTool" brew install --cask bettertouchtool echo "Done" echo "open BetterTouchTool" -
wkliwk created this gist
Dec 14, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ # BetterTouchTool reset trial time # ** All preference will reset echo "remove ~/Library/Preferences/com.hegenberg.BetterTouchTool.plist" rm -rf ~/Library/Preferences/com.hegenberg.BetterTouchTool.plist echo "Done" echo "remove ~/Library/Application\ Support/BetterTouchTool/" rm -rf ~/Library/Application\ Support/BetterTouchTool/ echo "Done" echo "remove /Applications/BetterTouchTool.app" rm -rf /Applications/BetterTouchTool.app echo "Done" echo "kill BetterTouchTool" kill $(ps aux | grep 'BetterTouchTool' | awk '{print $2}') echo "Done" echo "uninstall BetterTouchTool" brew cask uninstall bettertouchtool echo "Done" echo "install BetterTouchTool" brew cask install bettertouchtool echo "Done" echo "open BetterTouchTool" open -a BetterTouchTool echo "Done"