Skip to content

Instantly share code, notes, and snippets.

@espeon
Created September 5, 2020 07:04
Show Gist options
  • Select an option

  • Save espeon/406a7a4a299f28882c5703763289954a to your computer and use it in GitHub Desktop.

Select an option

Save espeon/406a7a4a299f28882c5703763289954a to your computer and use it in GitHub Desktop.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;previous song
F13::
Send {Media_Prev}
return
;play/pause
F14::
Send {Media_Play_Pause}
return
;next song
F15::
Send {Media_Next}
return
;print screen plus control
;for sharex
^F12::
Send ^{PrintScreen}
return
;print screen
;! means alt
!F12::
Send {PrintScreen}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment