Risposte:
Si, puoi! Ecco i passaggi:
Apri Automator e crea un servizio Automator, con un'unica azione Esegui AppleScript, contenente il seguente codice:
High Sierra e versioni successive:
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 e precedenti :
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
Questo è tutto! Ora dovresti avere un servizio impostato, legato al collegamento che hai scelto a cui puoi accedere da qualsiasi luogo.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M