dotfiles-remastered/.config/eww/modules/clock/clock.yuck

15 lines
138 B
Plaintext
Raw Normal View History

2023-11-26 23:34:43 +00:00
(defpoll time
:interval "1s"
:initial "0"
"date +%H:%M"
)
(defwidget clock []
(label
:class "clock"
:text {time}
)
)