- 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} |
Similar but using WASD and M:
; AutoHotkey Media Keys
>^>+Space::Send {Media_Play_Pause} ; RCtrl + RShift + Space
>^>+A::Send {Media_Prev} ; RCtrl + RShift + A
>^>+D::Send {Media_Next} ; RCtrl + RShift + D
>^>+M::Send {Volume_Mute} ; RCtrl + RShift + M
>^>+W::Send {Volume_Up} ; RCtrl + RShift + W
>^>+S::Send {Volume_Down} ; RCtrl + RShift + S
I'm curious, do these work with AHk version 2
I am trying to use this script in Autohotkey version 2:
Error: Missing "propertyname:" in object literal.
094: }
098: {
▶ 098: Send( {Media_Play_Pause})
098: }
099: {
I'm curious, do these work with AHk version 2
Looks like no. I hope somebody will advise how to fix that. Otherwise I'll have to revert to Autohotkey v1x
@zal-ua , here I resolved with:
Send "{Media_Play_Pause}"
Thanks, works great
Updated bindings for Ctrl + Alt + [space, up, down, left, right, .] -> play-pause, volume-up, volume-down, media-prev, media-next, mute
; Media keys
; Ctrl + Alt + [space, up, down, left, right, .] -> play-pause, volume-up, volume-down, media-prev, media-next, mute
<^<!Space::Send {Media_Play_Pause}
<^<!Up::Send {Volume_Up}
<^<!Down::Send {Volume_Down}
<^<!Left::Send {Media_Prev}
<^<!Right::Send {Media_Next}
<^<!.::Send {Volume_Mute}
this is mine:
#Requires AutoHotkey v2.0
F5::Send "{Media_Prev}"
F6::Send "{Media_Next}"
F7::Send "{Media_Play_Pause}"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
got the first 3 from a website tutorial and wanted to add the volume keys along with it using 2 key shortcut
thanks for the help
; "CTRL + LEFT" for previous
^Left::Media_Prev
; "CTRL + RIGHT" for next
^Right::Media_Next
; "CTRL + SPACE" for pause
^Space::Media_Play_Pause
; "CTRL + Arrow Down" for Volume Down
^Down:: Volume_Down
; "CTRL + Arrow Up" for Volume Up
^Up:: Volume_Up
; "CTRL + Numpad 0" for Mute
^Numpad0:: Volume_Mute