Monday, July 20, 2026

Autohotkey V2 Stuff

 #Requires AutoHotkey v2.0 (required)

#SingleInstance Force

::h::hello (hello with following space)

:o:h::hello (hellow no following space)

:*:h::hello (immediate hello no space)

::h::hello{!} (treats ! as literal character)

^!d:: {

    CurrentDateTime := FormatTime(, "yyyy-MM-dd")

    Send(CurrentDateTime)

}   


^!0:: {

    CurrentDateTime := FormatTime(, "dd-MM-yyyy")

    CurrentDateTime := StrUpper(CurrentDateTime)

    Send(CurrentDateTime)

;pin unpin window to top

}

^Space:: {

    WinSetAlwaysOnTop "TOGGLE", "A"

}

Autohotkey V2 Stuff

 #Requires AutoHotkey v2.0 (required) #SingleInstance Force ::h::hello (hello with following space) :o:h::hello (hellow no following space) ...