Per disabilitare il Centro di notifica dalla riga di comando, scrivi una chiave KeepAlive falsa in /System/Library/LaunchAgents/com.apple.notificationcenterui.plist in questo modo:
sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool false
Se vuoi riattivare il Centro notifiche, eseguirai lo stesso con un vero:
sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool true
Metodo per DISABLE senza sudo:
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
killall NotificationCenter
Metodo per ENABLE senza sudo:
launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
Quindi premi Command + Shift + G e vai a / System / Library / CoreServices / poi trova "Notification Center" e fai doppio clic per lanciarlo di nuovo
Tutorial con informazioni utili qui e qui