Skip to main content

Raymii.org Raymii.org Logo

Quis custodiet ipsos custodes?
Home | About | All pages | Cluster Status | RSS Feed

OS X: Disable Notification Center

Published: 10-07-2013 | Author: Remy van Elst | Text only version of this article


❗ This post is over ten years old. It may no longer be up to date. Opinions may have changed.

This snippet shows you how to disable the OS X Notification Center completely, the menu item and the sidebar. It also gives you the command to enable it again.

Recently I removed all Google Ads from this site due to their invasive tracking, as well as Google Analytics. Please, if you found this content useful, consider a small donation using any of the options below:

I'm developing an open source monitoring app called Leaf Node Monitoring, for windows, linux & android. Go check it out!

Consider sponsoring me on Github. It means the world to me if you show your appreciation and you'll help pay the server costs.

You can also sponsor me by getting a Digital Ocean VPS. With this referral link you'll get $100 credit for 60 days.

To disable the Notification Center completely, enter the following command in a terminal:

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

Then kill the remains with fire:

killall -9 NotificationCenter

To enable it again:

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

If that doesn't work, you can also move the Application and reboot:

sudo mv /System/Library/CoreServices/Notification\ Center.app /System/Library/CoreServices/Notification\ Center\ Disabled.app
Tags: apple , apple-remote-desktop , ard , mac , notification-center , os-x , snippets