Last active
December 11, 2015 02:18
-
-
Save lukaskubanek/4529265 to your computer and use it in GitHub Desktop.
Disable the Notification Center in Mac OS X using cURL.
This file contains 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/sh | |
# commands taken from http://osxdaily.com/2012/08/06/disable-notification-center-remove-menu-bar-icon-os-x/ | |
# usage: curl -L https://gist.github.com/raw/4529265/eb7df9dcd9bf92ecab978ccc500bd80221565aef/disable-notification-center.sh | sh | |
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist | |
killall NotificationCenter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment