Jawaban:
Ya kamu bisa! Berikut langkah-langkahnya:
Buka Automator dan buat Layanan Automator, dengan satu tindakan Run AppleScript, yang berisi kode berikut:
Sierra Tinggi dan yang lebih baru:
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 dan sebelumnya :
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
Itu dia! Anda sekarang harus memiliki set up layanan, terkait dengan pintasan yang Anda pilih yang dapat diakses dari mana saja.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M