Skip to content

Instantly share code, notes, and snippets.

@diegogslomp
Created January 18, 2022 23:21
Show Gist options
  • Save diegogslomp/1a2f2c24d61b42277e1583d969dbaa0e to your computer and use it in GitHub Desktop.
Save diegogslomp/1a2f2c24d61b42277e1583d969dbaa0e to your computer and use it in GitHub Desktop.

Media keys shortcuts for AutoHotkey

  • Alt + z : Previous
  • Alt + x : Play/Pause
  • Alt + c : Stop
  • Alt + v : Next
  • Alt + Left : Volume down
  • Alt + Down : Mute
  • Alt + Right : Volume up
; 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