Skip to content

Instantly share code, notes, and snippets.

@gilankpam
Created April 16, 2017 10:53
Show Gist options
  • Save gilankpam/c92a4e0c38f411c30757de802b53440f to your computer and use it in GitHub Desktop.
Save gilankpam/c92a4e0c38f411c30757de802b53440f to your computer and use it in GitHub Desktop.
AutoHotKey for multimedia shortcut
#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.
^f9::Send {Media_Prev}
^f10::Send {Media_Next}
^f11::Send {Volume_Down}
^f12::Send {Volume_Up}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment