Created
May 15, 2013 11:14
-
-
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.
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
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