Created
February 18, 2020 14:13
-
-
Save mvaneijgen/66580e6bb0c3e869015e6de994b81bc4 to your computer and use it in GitHub Desktop.
MacOS AppleScript toggle microphone input volume from 0 to 100
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) is 0 then | |
set volume input volume 100 | |
else | |
set volume input volume 0 | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment