Skip to content

Instantly share code, notes, and snippets.

@db93n2
Created January 27, 2017 09:14
Show Gist options
  • Save db93n2/0039e63b76254b466590a1414681f8e6 to your computer and use it in GitHub Desktop.
Save db93n2/0039e63b76254b466590a1414681f8e6 to your computer and use it in GitHub Desktop.
(autohotkey) - use the enter key in lightshot to save a screenshot to the last used folder
#ifWinActive ahk_exe Lightshot.exe
enter::
winGetTitle, window_title, ahk_exe Lightshot.exe
if inStr(window_title, "save")
send {enter}
else send ^{s}
return
#ifWinActive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment