Skip to content

Instantly share code, notes, and snippets.

@mattmc3
Created March 29, 2019 15:43
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 mattmc3/c16bca97a52e4226a782df7ce1e8d031 to your computer and use it in GitHub Desktop.
Save mattmc3/c16bca97a52e4226a782df7ce1e8d031 to your computer and use it in GitHub Desktop.
AHK - save clipboard to file
; Save clipboard to file
OnClipboardChange:
EnvGet, HomeDir, USERPROFILE
FileDelete, %HomeDir%\Documents\clipboard.txt
FileAppend, %Clipboard%, %HomeDir%\Documents\clipboard.txt
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment