Skip to content

Instantly share code, notes, and snippets.

@peteristhegreat
Created July 3, 2017 14:32
Show Gist options
  • Save peteristhegreat/5b773ac5fe41a0ed7dc84ae36d326aa5 to your computer and use it in GitHub Desktop.
Save peteristhegreat/5b773ac5fe41a0ed7dc84ae36d326aa5 to your computer and use it in GitHub Desktop.
AHK fine grained control of master volume
#InstallMouseHook
#Persistent
#SingleInstance Force
#NoEnv
SetTitleMatchMode, 2
detecthiddenwindows on
Vol = 5
^SPACE:: Winset, Alwaysontop, , A
LAlt::RAlt
F10::SoundSet, Vol/20
F12::
if(Vol < 100)
Vol := Vol + 0.2
SoundSet, Vol
; MsgBox % Vol
return
F11::
if(Vol > 0)
Vol := Vol - 0.2
SoundSet, Vol
; MsgBox % Vol
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment