Skip to content

Instantly share code, notes, and snippets.

@ScottJWalter
Last active February 1, 2024 07:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScottJWalter/ca9251f9a3b46910af7a919789d85c75 to your computer and use it in GitHub Desktop.
Save ScottJWalter/ca9251f9a3b46910af7a919789d85c75 to your computer and use it in GitHub Desktop.
Toggle Master Audio mute using AutoHotKey
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+SPECIAL+K --> Toggle Audio
;
^!#k:: SoundSetMute !SoundGetMute()
; ---------------------------------------------------------------------------------------------------------------------
; Ctrl+Alt+Shift+SPECIAL+K --> Turn Audio OFF
;
^!+#K:: SoundSetMute true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment