Skip to content

Instantly share code, notes, and snippets.

@spham
Created September 9, 2019 03:58
Show Gist options
  • Select an option

  • Save spham/0e8780d42071bca4f4575326a27830a0 to your computer and use it in GitHub Desktop.

Select an option

Save spham/0e8780d42071bca4f4575326a27830a0 to your computer and use it in GitHub Desktop.
disable notification mac os x
#!/bin/bash
# Disable macOS Upgrade notifications
# Step 1: prevent the update which brings the notification down
softwareupdate --ignore macOSInstallerNotification_GM
echo
# Step 2: delete the file if it's already on the computer
if [[ -d /Library/Bundles/OSXNotification.bundle ]]; then
echo "OSXNotification.bundle found. Deleting..."
rm -rf /Library/Bundles/OSXNotification.bundle ||:
else
echo "OSXNotification.bundle not found."
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment