Created
August 25, 2019 10:28
-
-
Save terbo/efd7c75cda00e00ae48d41ad6296503c to your computer and use it in GitHub Desktop.
Control MPD in Windows with Media Keys and 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
Media_Prev:: | |
Run, mpc.exe -h mp3 next,,Hide | |
return | |
Media_Next:: | |
Run, mpc.exe -h mp3 prev,,Hide | |
return | |
Media_Play_Pause:: | |
Run, mpc.exe -h mp3 toggle,,Hide | |
return | |
Volume_Up:: | |
Run, mpc.exe -h mp3 volume +6,,Hide | |
return | |
Volume_Down:: | |
Run, mpc.exe -h mp3 volume -6,,Hide | |
return | |
Volume_Mute:: | |
Run, mpc.exe -h mp3 mute,,Hide | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment