-
-
Save tuxpowered/8c59c8ab0a742e873e10ca36b769b5f3 to your computer and use it in GitHub Desktop.
Transmit 5 Trial Reset
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 characters
| #!/bin/sh | |
| # Reset Transmit 5 Trial | |
| # curl -fsSL https://gist.githubusercontent.com/thoaster/ca5b4fdb653b9cdb3930897045b78558/raw/reset.sh | bash | |
| set +e | |
| set -x | |
| sudo rm -rf ~/Library/Caches/com.panic.Transmit | |
| sudo rm -rf ~/Library/Application\ Support/com.panic.Transmit | |
| sudo rm ~/Library/Preferences/com.panic.Transmit.plist | |
| sudo killall cfprefsd | |
| defaults write com.panic.Transmit SUSendProfileInfo -bool NO | |
| defaults write com.panic.Transmit SUEnableAutomaticChecks -bool YES | |
| defaults write com.panic.Transmit ShowHiddenFiles -bool YES | |
| defaults write com.panic.Transmit DoubleClickAction -int 3 | |
| open -b com.panic.Transmit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment