Last active
February 1, 2024 07:28
-
-
Save ScottJWalter/1807cb23637d72b96807d8ced8887d64 to your computer and use it in GitHub Desktop.
Toggles the system default microphone through 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+M --> Toggle Microphone | |
; | |
^!#m:: SoundSetMute !SoundGetMute(, "Microphone"),, "Microphone" | |
; --------------------------------------------------------------------------------------------------------------------- | |
; Ctrl+Alt+Shift+SPECIAL+M --> Turn Microphone OFF | |
; | |
^!+#M:: SoundSetMute true,, "Microphone" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The latest version of iCUE has mic muting baked in ... if you have VoiceCommand installed and set up (account required). This method doesn't require anything, as iCUE also let's you bind keyboard actions to any of your keyboard keys, including the Gx keys.
So:
That's it. You're golden.