A slim Go application for Windows that lets you insert the current date, e.g., 2020-01-20
(ISO8601) into any text by pressing CTRL+ALT+D
.
see the release tab on the right to get the latest release
use build.bat this will generate an .exe file in /dist
Open your startup folder via WIN+R
, type shell:startup
, and drag and drop the .exe
there. see the Windows docs for more info
We use the Windows syscalls
RegisterHotKey
to register the hotkeyCTRL+ALT+D
GetMessageW
to listen for any input eventsSendInput
to send keyboard events