Quelle est cette icône ? dans la barre de menu d'OS X et comment l'enlever ?
Réponses
Trop de publicités?Il s'agit de l'icône du centre de notification. Vous pouvez vous en débarrasser en utilisant http://www.macbartender.com app.
Il s'agit de l'icône du centre de notification.
Pour supprimer le centre de notification, collez ce script dans l'éditeur AppleScript et exécutez-le...
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
Enregistrez ce script en tant qu'application si vous souhaitez régulièrement supprimer ou afficher le centre de notification.
Vous ne pouvez le désactiver qu'avec certains outils, Bartender n'est pas gratuit, mais c'est un bon outil.
Je pense que vous aimerez NCBackgrounder - Après l'installation, vous pouvez désactiver le Centre de notification (ou le personnaliser) et le mieux, c'est qu'il est entièrement gratuit.
J'espère que cela vous conviendra.