Skip to content

Instantly share code, notes, and snippets.

@nkt
Created May 9, 2015 20:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkt/4b96559d567f8b33b35a to your computer and use it in GitHub Desktop.
Save nkt/4b96559d567f8b33b35a to your computer and use it in GitHub Desktop.
#!/usr/bin/osascript
tell application "Skype"
if (send command "GET MUTE" script name "MuteToggler") is equal to "MUTE ON" then
send command "SET MUTE OFF" script name "MuteToggler"
else
send command "SET MUTE ON" script name "MuteToggler"
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment