;--------------------------------------------------------------------------------------------------------------- ; CHANGELOG: ; ; Oct 03 2023: Initial release by Glisense ltd ; ; Current script is designed for use together with Keyboard Extension® (https://keyboardextension.com) ; ; For the latest version, description and licensing terms go to https://keyboardextension.com/plugins/a5d5c515 ; ;--------------------------------------------------------------------------------------------------------------- #NoTrayIcon ; Hide tray icon #Requires AutoHotkey v2 Persistent SetTimer getSystemTime, 20 getSystemTime() { systemTime := A_DD . '.' . A_MM . '.' . A_YEAR . '`n' . A_Hour . ':' . A_Min . ':' . A_Sec . '.' . A_MSec ; ToolTip(systemTime) KEPluginParamOutput('SystemTime', systemTime) }