Skip to content

Instantly share code, notes, and snippets.

@bartosz-bilicki
Forked from mistic100/Mediakeys.ahk
Created December 2, 2019 08:24
Show Gist options
  • Save bartosz-bilicki/d6ae582ac9b454b824bde29a666c1951 to your computer and use it in GitHub Desktop.
Save bartosz-bilicki/d6ae582ac9b454b824bde29a666c1951 to your computer and use it in GitHub Desktop.
Media keys shortcuts for AutoHotkey

Media keys shortcuts for AutoHotkey

  • Ctrl + Alt + Space : Pause
  • Ctrl + Alt + Right : Next
  • Ctrl + Alt + Left : Previous
  • Ctrl + Alt + - : Volume down
  • Ctrl + Alt + + : Volume up
  • Ctrl + Alt + * : Mute
; AutoHotkey Media Keys
^!Space::Send {Media_Play_Pause}
^!Left::Send {Media_Prev}
^!Right::Send {Media_Next}
^!NumpadMult::Send {Volume_Mute}
^!NumpadAdd::Send {Volume_Up}
^!NumpadSub::Send {Volume_Down}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment