Alternative Clock
Posted: Feb 15th, ’14, 15:29
Here is the always on top transparent clock I use in my setup. Very useful. You can change a color, font size and position as you like. Just paste the code below into the Command field.
Code: Select all
Gui, +AlwaysOnTop +ToolWindow -SysMenu -Caption
Gui, Color, cccccc
Gui, Font, cRed s11, verdana ;color and size
Gui, Add, Text, vD y0, %A_YYYY%-%A_MM%-%A_DD% %a_hour%:%a_min%:%a_sec%
Gui, Show, NoActivate x750 y3,uptime ;position
WinSet, TransColor, cccccc 255,uptime
SetTimer, RefC, 1000
return
RefC:
GuiControl, , D, %A_YYYY%-%A_MM%-%A_DD% %a_hour%:%a_min%:%a_sec%
Gui, Show, NoActivate x750 y3,uptime ;position
return