mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-25 04:19:02 +00:00
This configuration was simply copied from my old Arch Linux system. There are some issues that still need to be solved, namely with fonts and missing bitcoin price script, but it's mostly minor.
18 lines
336 B
Text
18 lines
336 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}")
|
|
)))
|
|
|