What is this icon
in OS X menu bar and how do you remove it?
Asked
Active
Viewed 1,009 times
4 Answers
2
This is Notification Center icon. You can get rid of it using http://www.macbartender.com app.
Mateusz Szlosek
- 23,919
2
It is the Notification Center icon.
To remove the Notification Center, paste this script in AppleScript Editor and then run it...
display dialog "Notification Center" buttons {"Remove", "Display"} default button 2
if the button returned of the result is "Remove" then
tell application "Terminal"
set currentTab to do script ("launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist")
delay 2
do script ("killall NotificationCenter") in currentTab
delay 3
quit application "Terminal"
end tell
say "Notification Center has been removed successfully."
else
tell application "Terminal"
set currentTab to do script ("launchctl load -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist")
delay 5
quit application "Terminal"
end tell
say "Notification Center has been restored successfully."
end if
Save this script as an application if you regularly want to remove or display notification center.
CousinCocaine
- 10,098
Nayan Seth
- 116
1
You can disable it only with some tools, Bartender is not free, but a nice tool.
I think you will love NCBackgrounder - after the Installation you can disable Notification Center (or Customize it) and the best thing is - it's completely free.
I hope this works for you.
bMalum
- 1,331
-3
On Mac:
1) Click Chrome in your top menu bar. 2) Select Hide Notifications Icon from the drop-down menu.
Jesse
- 1
-
I'm fairly certain this does not address the question being asked. Want to add some more detail so it doesn't get down voted? – Ian C. Jul 17 '14 at 16:24
MonoThreadedcomment to be exact :) Accepted answer also removes NC completly not only the icon. – Mateusz Szlosek Jul 17 '14 at 16:50