- Alt + z : Previous
- Alt + x : Play/Pause
- Alt + c : Stop
- Alt + v : Next
- Alt + Left : Volume down
- Alt + Down : Mute
- Alt + Right : Volume up
Created
January 18, 2022 23:21
-
-
Save diegogslomp/1a2f2c24d61b42277e1583d969dbaa0e to your computer and use it in GitHub Desktop.
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 | |
!z::Send {Media_Prev} | |
!x::Send {Media_Play_Pause} | |
!c::Send {Media_Stop} | |
!v::Send {Media_Next} | |
!Left::Send {Volume_Down} | |
!Down::Send {Volume_Mute} | |
!Right::Send {Volume_Up} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment