Skip to content

Instantly share code, notes, and snippets.

@derrickturk
Created May 4, 2023 15:32
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 derrickturk/af16e96e01184a06e9bf4c2f153ccf61 to your computer and use it in GitHub Desktop.
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
#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