Skip to content

Instantly share code, notes, and snippets.

@petrzpav
Created August 9, 2017 11:55
Show Gist options
  • Save petrzpav/fcc3847a3cbec77d5839c8efcb8bd501 to your computer and use it in GitHub Desktop.
Save petrzpav/fcc3847a3cbec77d5839c8efcb8bd501 to your computer and use it in GitHub Desktop.
AutoHotKey media settings
; -------------------------------------
; MASTER VOLUME CONTROL
; Ovládání globální hlasitosti
; -------------------------------------
^!PgUp::Send {Volume_Up}
^!PgDn::Send {Volume_Down}
^!Delete::Send {Volume_Mute}
; -------------------------------------
; MEDIA CONTROL
; Simulace tlačítek pro ovládání médií
; -------------------------------------
^!Home::Send {Media_Prev}
^!End::Send {Media_Next}
^!Insert::Send {Media_Play_Pause}
; -------------------------------------
; CALCULATOR
; Spustí/zobrazí/skryje kalkulačku
; -------------------------------------
#c::
if !WinExist("Kalkulačka")
and !WinExist("Calculator")
Run calc.exe
IfWinActive
WinMinimize
else
WinActivate
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment