Skip to content

Instantly share code, notes, and snippets.

@funguscolander
Created June 9, 2020 11:55
Show Gist options
  • Save funguscolander/7d84d9691eab2ac7e7daf36c731f7654 to your computer and use it in GitHub Desktop.
Save funguscolander/7d84d9691eab2ac7e7daf36c731f7654 to your computer and use it in GitHub Desktop.
AutoHotKey script for controlling Spotify or any other media from anywhere on the computer.
; Media control (Global Spotify hotkeys)
<^<!<#Space:: ; LCtrl+LAlt+LWin+Space :: Play/pause
Send, {Media_Play_Pause}
return
<^<!<#C:: ; LCtrl+LAlt+LWin+C :: Previous track
Send, {Media_Prev}
return
<^<!<#V:: ; LCtrl+LAlt+LWin+V :: Next track
Send, {Media_Next}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment