Created
May 4, 2023 15:32
-
-
Save derrickturk/af16e96e01184a06e9bf4c2f153ccf61 to your computer and use it in GitHub Desktop.
toggle that stupid "Loudness Equaliization" setting you need to hear anything on Zoom calls
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
#Requires AutoHotkey v2.0 | |
^+F12:: | |
{ | |
run "rundll32.exe shell32.dll Control_RunDLL mmsys.cpl" | |
WinWait "ahk_class #32770" | |
Send "{Down 2}" | |
Send "{Tab 2}{Enter}" | |
WinWait "ahk_class #32770" | |
Sleep 50 | |
Send "^{Tab}^{Tab}" | |
Send "{Space}" | |
Send "{Enter}" | |
Send "{Esc}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment