ラベル

Mac (7) MacOSX (3) Windows (3) iPhone (3) Android (2) Eclipse (2) bash (2) ゲーム (2) マンガ・アニメ (2) CUPS-PDF (1) Dev (1) Java (1) Mountain Lion (1) PBTweet+ (1) Perl (1) SnowLeopard (1) Twitter (1) Web::Scraper (1) Workflow (1) automate (1) eeePC (1) extension (1) git (1) iOS (1) javascript (1) notification (1) script (1) サーバ (1) 山梨県 (1) 教採 (1) 試験 (1)

2016年11月6日日曜日

Mac OS X の通知センターを無効にする + ターミナルから切り替える


コマンド

無効にする
launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
有効にする
launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
thx to How to Completely Disable Notification Center in Mac OS X


めんどいのでエイリアスを作っておき、好きなときにON/OFFを切り替えれるようにする

エイリアスの作成
echo >> ~/.profile && echo >> ~/.profile && echo '# Disable/enable notification center' >> ~/.profile && echo 'alias disableNotificationCenter="launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist && killall NotificationCenter"' >> ~/.profile && echo 'alias enableNotificationCenter="launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist && open /System/Library/CoreServices/NotificationCenter.app/"' >> ~/.profile && source ~/.profile
使い方
無効にする:
disableNotificationCenter
有効にする:
enableNotificationCenter
thx to Disable/Enable Notification Center (MacOS X)

0 件のコメント:

コメントを投稿