Last active
February 22, 2020 11:56
-
-
Save jgarces02/85772005766c65bd3a285e3cfdabe6bf to your computer and use it in GitHub Desktop.
Some Spotify keyboard shortcuts (on Windows)
This file contains 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
#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