Created
December 22, 2017 09:25
-
-
Save jframos/4dd8e363010f04f997fbbe7a6f5a246a to your computer and use it in GitHub Desktop.
AppleScript - Microphone mute
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
if input volume of (get volume settings) = 0 then | |
set level to 90 | |
display notification "On" with title "Mic" | |
tell application "System Events" | |
tell appearance preferences | |
set dark mode to false | |
end tell | |
end tell | |
else | |
set level to 0 | |
display notification "Off" with title "Mic" | |
tell application "System Events" | |
tell appearance preferences | |
set dark mode to true | |
end tell | |
end tell | |
end if | |
set volume input volume level |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment