Skip to content

Instantly share code, notes, and snippets.

@OlliV
Created July 26, 2012 19:56
Show Gist options
  • Save OlliV/3184157 to your computer and use it in GitHub Desktop.
Save OlliV/3184157 to your computer and use it in GitHub Desktop.
Disable that annoying NotificationCenter on OS X Mountain Lion
launchctl unload /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
sudo mv /System/Library/LaunchAgents/com.apple.notificationcenterui.plist /System/Library/LaunchAgents/com.apple.notificationcenterui.bak
@jonkellner
Copy link

This is exactly what I was looking for! Is this permanent, or is there a way to undo this, should I desire to bring the NotificationCenter Icon on the Menubar back???

@OlliV
Copy link
Author

OlliV commented Jul 29, 2012

Sure just rename the file back to *.plist, use launchctl load and start command (or just reboot and it should start automatically)
sudo mv /System/Library/LaunchAgents/com.apple.notificationcenterui.bak /System/Library/LaunchAgents/com.apple.notificationcenterui.plist

@gregorynicholas
Copy link

launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment