Câu trả lời:
Có bạn có thể! Dưới đây là các bước:
Mở Automator và tạo Dịch vụ Automator, với một hành động AppleScript duy nhất, chứa mã sau đây:
Cao Sierra và sau này:
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 và trước đó :
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
Đó là nó! Bây giờ bạn sẽ có một dịch vụ được thiết lập, gắn với phím tắt bạn chọn có thể được truy cập từ bất cứ đâu.
tell application "System Events" to tell process "Notification Center" to click checkbox "Mute" of first item of windows
Ctrl+Alt+M