aurooba / alfred-workflow-zoom-meetings

Join a Zoom meeting without the link opening in your browser.
MIT License
45 stars 2 forks source link

[Feature Request] Mute/Unmute Audio #9

Open jonasdiemer opened 3 years ago

jonasdiemer commented 3 years ago

It would be cool to be able to mute/unmute audio from Alfred. This is useful in cases where Zoom Window is in the background.

jonasdiemer commented 3 years ago

Could potentially be done by osascript, e.g. triggered by "zm m".

tell application "zoom.us"
activate
    tell application "System Events"
        keystroke "a" using {shift down, command down}
    end tell
end tell