जवाबों:
हाँ तुम कर सकते हो! यहाँ कदम हैं:
ऑटोमेटर खोलें और एक ऑटोमेटर सेवा बनाएं, जिसमें एक एकल रन 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