Last active
August 4, 2020 14:17
-
-
Save sarkrui/0ee23a604a89f3b5c584b102dc470c74 to your computer and use it in GitHub Desktop.
Snippets to remove macOS updates alert
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/bash | |
sudo softwareupdate --ignore "macOS Catalina" | |
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0 | |
killall Dock | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One click removal
sh -c "$(curl -fsSL https://gist.github.com/sarkrui/0ee23a604a89f3b5c584b102dc470c74/raw/removeMacOSUpdateAlert.sh)"