mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-22 12:39:02 +00:00
18 lines
333 B
Text
18 lines
333 B
Text
(defwidget clock_module []
|
|
|
|
(eventbox
|
|
:tooltip {time.day}
|
|
:class "module clock"
|
|
:onclick "${EWW_CMD} open --toggle calendar"
|
|
|
|
(box
|
|
:space-evenly false
|
|
|
|
(label
|
|
:class "icon"
|
|
:text "")
|
|
(label
|
|
:class "value"
|
|
:text "${time.date} ${time.hour}:${time.minute}")
|
|
)))
|
|
|