Skip to content

Instantly share code, notes, and snippets.

@zessx
Last active August 29, 2015 14:06
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 zessx/0997c407989d48ebd28a to your computer and use it in GitHub Desktop.
Save zessx/0997c407989d48ebd28a to your computer and use it in GitHub Desktop.
AutoHotKey scripts
; Ctrl+Win+Right : next song
#^Right::Send {Media_Next}
return
; Ctrl+Win+Left : previous song
#^Left::Send {Media_Prev}
return
; Ctrl+Win+< : play/pause
#^SC056::Send {Media_Play_Pause}
return
; Ctrl+Win+Up : volume up
#^Up::Send {Volume_Up}
return
; Ctrl+Win+Down : volume down
#^Down::Send {Volume_Down}
return
; Ctrl+Win+Space : window always on top
#^SPACE::Winset,Alwaysontop,,A
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment