Skip to content

Instantly share code, notes, and snippets.

@manuelvanrijn
Created July 25, 2013 10:04
Show Gist options
  • Save manuelvanrijn/6078411 to your computer and use it in GitHub Desktop.
Save manuelvanrijn/6078411 to your computer and use it in GitHub Desktop.
Small script for AutoHotKey when you don't have Media buttons on your keyboard. This script binds the keys below to the following Media actions: - PrintScreen = Previous - ScrollLock = Play/Pause - Break = Next
;
; Music player tweak
;
PrintScreen::
Send {Media_Prev}
Return
Break::
Send {Media_Next}
Return
ScrollLock::
Send {Media_Play_Pause}
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment