Skip to content

Instantly share code, notes, and snippets.

@tuxpowered
Forked from thoaster/reset.sh
Created April 17, 2024 21:19
Show Gist options
  • Select an option

  • Save tuxpowered/8c59c8ab0a742e873e10ca36b769b5f3 to your computer and use it in GitHub Desktop.

Select an option

Save tuxpowered/8c59c8ab0a742e873e10ca36b769b5f3 to your computer and use it in GitHub Desktop.
Transmit 5 Trial Reset
#!/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