Last active
March 24, 2025 22:10
-
-
Save wkliwk/7de8a89f60fa09e3c88869d8254298b8 to your computer and use it in GitHub Desktop.
BTT reset trial time
This file contains 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 characters
# 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 uninstall --cask bettertouchtool | |
echo "Done" | |
echo "install BetterTouchTool" | |
brew install --cask bettertouchtool | |
echo "Done" | |
echo "open BetterTouchTool" | |
open -a BetterTouchTool | |
echo "Done" |
How do we execute this? Terminal?
go to the folder and enter source btt.sh
How do we execute this? Terminal?
go to the folder and enter
source btt.sh
What folder do I go to?
As of 7 Sep 2024, it stopped working.
Yep, confirm not working anymore 😔
fix it please :((
any solution?
bump
any solution?
bump
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How do we execute this? Terminal?