Відповіді:
Так, ти можеш! Ось такі кроки:
Відкрийте Automator і створіть службу Automator, за допомогою однієї дії запустіть AppleScript, що містить такий код:
Висока Сьєрра і пізніші:
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
Сьєрра і раніше :
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
Це воно! Тепер у вас повинен бути налаштований сервіс, прив’язаний до вибраного вами ярлика, до якого можна отримати доступ з будь-якого місця.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M