Created
May 9, 2015 20:28
-
-
Save nkt/4b96559d567f8b33b35a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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