Skip to content

Instantly share code, notes, and snippets.

@regisboliver
regisboliver / MediaKeys.ahk
Last active September 22, 2023 19:57
Media keys shortcuts file for AutoHotkey - by przemoc
^!Left:: Send {Media_Prev}
^!Down:: Send {Media_Play_Pause}
^!Right:: Send {Media_Next}
+^!Left:: Send {Volume_Down}
+^!Down:: Send {Volume_Mute}
+^!Right:: Send {Volume_Up}
@mistic100
mistic100 / Mediakeys.ahk
Last active May 1, 2024 00:47
Media keys shortcuts for AutoHotkey
; 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}