- 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
-
-
Save tatoosh/69d7b4e2c0b71f9c41b20d9ceb532e07 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} | |
^!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