Last active
March 26, 2025 23:58
-
-
Save thoaster/ca5b4fdb653b9cdb3930897045b78558 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
Shortcuts sharing is peace of sh*t, try https://www.icloud.com/shortcuts/b3ff2317787e4dc7ac38d781158a508e downloading the new one.
Check Shortcut preferences (privacy tab)
Create a new shortcut from scratch if mine is broken. HowTo Gif:
Shortcut env
Relative paths, like
~/Library/Caches/com.panic.Transmit
and some other common dotenv features don't work as expected in Shortcut shell scripts. So you can't just paste the reset.sh content there, you have to absolute the paths & use some tricksShortcut gist
The code above should download & launch the script from my fork-gist with shortcuts environment wrapper, check the Readme out:
👉🏻 https://gist.github.com/andriilive/eee0d63279347a55c15dd0442f6b3f12
Shortcut code:
Automator
,launchd
or any other way you prefer. Let me know if you find a good one. (I haven't tried it yet).