Yanıtlar:
Evet yapabilirsin! İşte adımlar:
Automator'ı açın ve aşağıdaki kodu içeren tek bir AppleScript Çalıştır eylemiyle bir Automator Hizmeti oluşturun:
Yüksek Sierra ve sonrası:
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 ve öncesi :
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
Bu kadar! Artık herhangi bir yerden erişebileceğiniz, seçtiğiniz kısayola bağlı bir hizmet ayarlamış olmanız gerekir.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M