回答:
はい、できます!手順は次のとおりです。
Automatorを開き、次のコードを含む単一のRun AppleScriptアクションでAutomatorサービスを作成します。
High Sierra以降:
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