Created
August 8, 2018 18:05
-
-
Save Eihen/cc1072314c1e8265cb96f3d9d20c089b to your computer and use it in GitHub Desktop.
AutoHotkey script for media shortcuts
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
; Play/Pause | |
+F10:: | |
Send, {Media_Play_Pause} | |
Return | |
; Previous Song | |
+F11:: | |
Send, {Media_Prev} | |
Return | |
; Next Song | |
+F12:: | |
Send, {Media_Next} | |
Return | |
; Mute Volume | |
+F6:: | |
Send, {Volume_Mute} | |
Return | |
; Volume Down | |
+F7:: | |
Send, {Volume_Down} | |
Return | |
; Volume Up | |
+F8:: | |
Send, {Volume_Up} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment