Skip to content

Instantly share code, notes, and snippets.

@tatoosh
Forked from mistic100/Mediakeys.ahk
Last active March 14, 2021 20:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatoosh/69d7b4e2c0b71f9c41b20d9ceb532e07 to your computer and use it in GitHub Desktop.
Save tatoosh/69d7b4e2c0b71f9c41b20d9ceb532e07 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 + Down : Volume down
  • Ctrl + Alt + Up : Volume up
  • Ctrl + Alt + # : Mute
; AutoHotkey Media Keys
^!Space::Send {Media_Play_Pause}
^!Left::Send {Media_Prev}
^!Right::Send {Media_Next}
^!#::Send {Volume_Mute}
^!Up::Send {Volume_Up}
^!Down::Send {Volume_Down}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment