Last active
August 29, 2015 14:21
-
-
Save billglover/b0ed832da5bf76fd00b6 to your computer and use it in GitHub Desktop.
Provide media key functionality by using the navigation keys using #AutoHotKey
This file contains hidden or 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
#NoEnv | |
#SingleInstance, force | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
; Ctrl + Alt + Left = previous track | |
^!Left::Media_Prev | |
; Ctrl + Alt + Right = next track | |
^!Right::Media_Next | |
; Ctrl + Alt + Numpad 0 = play/pause track | |
^!Numpad0::Media_Play_Pause | |
; Ctrl + Alt + Up/Down = system volume up/down | |
^!Up::Send {Volume_Up} | |
^!Down::Send {Volume_Down} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment