Skip to content

Instantly share code, notes, and snippets.

@jgarces02
Last active February 22, 2020 11:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgarces02/85772005766c65bd3a285e3cfdabe6bf to your computer and use it in GitHub Desktop.
Save jgarces02/85772005766c65bd3a285e3cfdabe6bf to your computer and use it in GitHub Desktop.
Some Spotify keyboard shortcuts (on Windows)
#Numpad4::^Media_Prev
#Numpad6::^Media_Next
#Numpad5::^Media_Play_Pause
#Numpad8::^Volume_Up
#Numpad2::^Volume_Down
##### Version 2 (no numeric keyboard)
; "Sifth + Windows + RIGHT" for next
#+Right::^Media_Next
; "Sifth + Windows + LEFT" for previous
#+Left::^Media_Next
; "Sifth + Windows + UP" for play/pause
#+UP::^Media_Play_Pause
; "Sifth + Windows + S" for Launching spotify
#+S::
IfWinExist ahk_class SpotifyMainWindow
{
ifWinActive ahk_class SpotifyMainWindow
{
WinMinimize
}
else
{
WinActivate
}
}
else
{
run "C:\Users\juanj\AppData\Roaming\Spotify\Spotify.exe"
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment