new_dots/home/modules/eww/eww-config/eww.yuck
2026-01-11 11:57:35 +01:00

31 lines
524 B
Text

(defvar time-visible false)
(
defwindow clock
:monitor 0
:geometry (
geometry :x "-10%"
:y "15%"
:width "15%"
:height "10%"
:anchor "top right"
)
:stacking "bg"
:windowtype "dock"
:wm-ignore true
(
box :orientation "horizontal"
:halign "center"
time
)
)
(
defpoll time :interval "1s"
:initial "initial-value"
:run-while time-visible
`date +%H:%M:%S`
)