Skip to content

Instantly share code, notes, and snippets.

@julik
Created November 17, 2014 13:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save julik/34809ee6c97865f9c4fe to your computer and use it in GitHub Desktop.
Save julik/34809ee6c97865f9c4fe to your computer and use it in GitHub Desktop.
Mute/unmute (for PowerMate, thanks to AJ)
-- http://blog.coolaj86.com/articles/how-to-control-os-x-system-volume-with-applescript/
set isMuted to output muted of (get volume settings)
if isMuted then
set volume without output muted
else
set volume with output muted
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment