non important commit

This commit is contained in:
benstrb 2026-01-11 11:57:35 +01:00
parent 22bbfa0b08
commit cbbdd00cd8

View file

@ -1,3 +1,5 @@
(defvar time-visible false)
(
defwindow clock
:monitor 0
@ -12,6 +14,18 @@
:stacking "bg"
:windowtype "dock"
:wm-ignore true
(
box :orientation "horizontal"
:halign "center"
"%H:%M:%S"
time
)
)
(
defpoll time :interval "1s"
:initial "initial-value"
:run-while time-visible
`date +%H:%M:%S`
)