OSX: Disable Notification Center.

This commit is contained in:
Artem Sapegin 2013-02-15 17:52:31 +04:00
parent b50c6b6904
commit c99810df07
1 changed files with 4 additions and 1 deletions

View File

@ -384,6 +384,9 @@ defaults write -g WebContinuousSpellCheckingEnabled -boolean true
# Remove Spotlight from menu bar
sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search
# Disable Notification Center
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
###############################################################################
# Safari & WebKit #
###############################################################################
@ -570,7 +573,7 @@ sudo pmset -c panicrestart 15
###############################################################################
for app in "Address Book" "Calendar" "Contacts" "Dashboard" "Dock" "Finder" \
"Mail" "Safari" "SystemUIServer" "Terminal" "iCal" "iTunes"; do
"Mail" "Safari" "SystemUIServer" "Terminal" "iCal" "iTunes" "NotificationCenter"; do
killall "$app" > /dev/null 2>&1
done
echo "Done. Note that some of these changes require a logout/restart to take effect."