diff --git a/killTypeClipboard.bat b/killTypeClipboard.bat new file mode 100755 index 0000000..c17339f --- /dev/null +++ b/killTypeClipboard.bat @@ -0,0 +1 @@ +taskkill /IM "typeClipboard.exe" /F \ No newline at end of file diff --git a/typeClipboard.ahk b/typeClipboard.ahk new file mode 100755 index 0000000..b181717 --- /dev/null +++ b/typeClipboard.ahk @@ -0,0 +1,5 @@ +#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. +^q::Send %clipboard% \ No newline at end of file diff --git a/typeClipboard.exe b/typeClipboard.exe new file mode 100755 index 0000000..2b9094e Binary files /dev/null and b/typeClipboard.exe differ