Skip to content

Instantly share code, notes, and snippets.

@terbo
Created August 25, 2019 10:28
Show Gist options
  • Save terbo/efd7c75cda00e00ae48d41ad6296503c to your computer and use it in GitHub Desktop.
Save terbo/efd7c75cda00e00ae48d41ad6296503c to your computer and use it in GitHub Desktop.
Control MPD in Windows with Media Keys and AutoHotKey
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