Skip to content

Instantly share code, notes, and snippets.

@diegogslomp
Created February 3, 2023 22:49
Show Gist options
  • Save diegogslomp/4f606a60659d75808fe01ded1c64252d to your computer and use it in GitHub Desktop.
Save diegogslomp/4f606a60659d75808fe01ded1c64252d to your computer and use it in GitHub Desktop.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
; 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