Skip to content

Instantly share code, notes, and snippets.

@dm-z
Created April 8, 2014 08:15
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dm-z/10101249 to your computer and use it in GitHub Desktop.
Save dm-z/10101249 to your computer and use it in GitHub Desktop.
Mute/Unmute OS X system volume with AppleScript
set curVolume to get volume settings
if output muted of curVolume is false then
set volume with output muted
else
set volume without output muted
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment