- Ctrl + Alt + Space : Pause
- Ctrl + Alt + z : Previous
- Ctrl + Alt + x : Next
- Ctrl + Alt + - : Volume down
- Ctrl + Alt + + : Volume up
- Ctrl + Alt + * : Mute
-
-
Save androsland/26abc1c853b424e66863c18e0581ed86 to your computer and use it in GitHub Desktop.
Media keys shortcuts for AutoHotkey
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; AutoHotkey Media Keys | |
^!Space::Send {Media_Play_Pause} | |
^!z::Send {Media_Prev} | |
^!x::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