Last active
August 4, 2018 20:16
-
-
Save benwrk/6fa43f81f3e14cfea04a6c210096e8d0 to your computer and use it in GitHub Desktop.
Media Control Macro Keys Script for AutoHotKey
This file contains 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
; Media Control Macro Keys Script For AutoHotKey | |
; Version 1.0 | |
; | |
; (C) Benjapol Worakan | |
; | |
; Created out of frustation that my new laptop does not have multimedia hotkeys (e.g. Play/Pause/Next/Previous) | |
; Feel free to use or modify this script :) | |
; RightCtrl+Spacebar = Play/Pause | |
>^Space::Media_Play_Pause | |
; RightCtrl+LeftArrow = Previous Track | |
>^Left::Media_Prev | |
; RightCtrl+RightArrow = Next Track | |
>^Right::Media_Next |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment