Created
March 17, 2020 15:52
-
-
Save satokaz/78d81e9a76b8a907a7ccaafca222742d to your computer and use it in GitHub Desktop.
Applescript to switch mute of output volume
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
on run {parameters} | |
if output muted of (get volume settings) = false then | |
set volume with output muted | |
else | |
set volume without output muted | |
end if | |
-- get volume settings | |
end run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment