Last active
February 1, 2024 07:12
-
-
Save ScottJWalter/ca9251f9a3b46910af7a919789d85c75 to your computer and use it in GitHub Desktop.
Toggle Master Audio mute using AutoHotKey
This file contains 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
; --------------------------------------------------------------------------------------------------------------------- | |
; 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