Skip to content

Instantly share code, notes, and snippets.

@betodealmeida
Forked from tyzbit/zoom-mute-status.scpt
Created September 29, 2020 20:23
Show Gist options
  • Save betodealmeida/e1868090cc5397f1937997e3527d6006 to your computer and use it in GitHub Desktop.
Save betodealmeida/e1868090cc5397f1937997e3527d6006 to your computer and use it in GitHub Desktop.
Get Zoom Mute/Unmute Status
property btnTitle : "Mute audio"
tell application "System Events" to tell application process "zoom.us"
if exists (menu item btnTitle of menu 1 of menu bar item "Meeting" of menu bar 1) then
do shell script "echo Unmuted"
else
do shell script "echo Muted"
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment