Last active
December 14, 2020 16:22
-
-
Save mislav/9894000d4534225f951c7b0585d40b56 to your computer and use it in GitHub Desktop.
This file contains 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
# First, close Google Chrome. | |
# unload the Keystone agent | |
find /Library/Launch* ~/Library/LaunchAgents -maxdepth 1 -iname 'com.google.*' | xargs -L1 launchctl unload | |
# prevent it from starting again (note: you could also back up the files by moving them elsewhere) | |
find /Library/Launch* ~/Library/LaunchAgents -maxdepth 1 -iname 'com.google.*' | xargs rm -v | |
# Warning: it's likely that running Google Chrome after this will restore these files. | |
# If it doesn't, consider that automatic Chrome updates will be DISABLED. Use at own risk. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment