mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
20 lines
482 B
Text
20 lines
482 B
Text
|
|
(include "eww_vars.yuck")
|
||
|
|
|
||
|
|
(defwidget day []
|
||
|
|
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
|
||
|
|
(label :class "label" :text DAY)
|
||
|
|
)
|
||
|
|
)
|
||
|
|
|
||
|
|
(defwidget month []
|
||
|
|
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
|
||
|
|
(label :class "label" :text MONTH)
|
||
|
|
)
|
||
|
|
)
|
||
|
|
|
||
|
|
(defwidget year []
|
||
|
|
(box :height "100" :width "100" :halign "center" :valign "center" :class "container"
|
||
|
|
(label :class "label" :text YEAR)
|
||
|
|
)
|
||
|
|
)
|