Skip to content

Instantly share code, notes, and snippets.

@simonwhitaker
Created May 15, 2013 11:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simonwhitaker/5583256 to your computer and use it in GitHub Desktop.
Save simonwhitaker/5583256 to your computer and use it in GitHub Desktop.
Add this function to your .zshrc or equivalent to get a `kill-adobe-updater` command. Nukes the Adobe Application Manager Updater that creeps onto my menu bar every bloody time I run an Adobe app.
kill-adobe-updater() {
killall "AAM Updates Notifier" 2>/dev/null || echo "AAM Updater not running"
rm ~/Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist 2>/dev/null || echo "LaunchAgent not found"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment