Réponses:
Oui, vous pouvez! Voici les étapes:
Ouvrez Automator et créez un service Automator, avec une seule action Exécuter AppleScript, contenant le code suivant:
High Sierra et plus tard:
tell application "System Events" to tell process "Notification Center"
if checkbox "Mute" of window 1 exists then
click checkbox "Mute" of window 1
end if
end tell
Sierra et versions antérieures :
tell application "System Events"
if checkbox "Mute" of window 1 of application process "FaceTime" exists then
click checkbox "Mute" of window 1 of application process "FaceTime"
end if
end tell
C'est tout! Vous devriez maintenant avoir un service configuré, lié au raccourci que vous avez choisi, accessible de n'importe où.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M