Skip to content

Instantly share code, notes, and snippets.

@dm-z
dm-z / Volume Mute
Created April 8, 2014 08:15
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