- Ctrl + Alt + Space : Pause
- Ctrl + Alt + Right : Next
- Ctrl + Alt + Left : Previous
- Ctrl + Alt + - : Volume down
- Ctrl + Alt + + : Volume up
- Ctrl + Alt + * : Mute
Last active
January 25, 2025 23:00
-
Star
(102)
You must be signed in to star a gist -
Fork
(19)
You must be signed in to fork a gist
-
-
Save mistic100/d3c0c1eb63fb7e4ee545 to your computer and use it in GitHub Desktop.
Media keys shortcuts for AutoHotkey
This file contains 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} | |
^!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
this is mine:
#Requires AutoHotkey v2.0
F5::Send "{Media_Prev}"
F6::Send "{Media_Next}"
F7::Send "{Media_Play_Pause}"