mirror of
https://github.com/ItsDrike/nixdots
synced 2025-02-22 12:39: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.
15 lines
246 B
Text
15 lines
246 B
Text
(defwidget cpu_module []
|
|
(eventbox
|
|
:class "module cpu"
|
|
|
|
(box
|
|
:space-evenly false
|
|
|
|
(label
|
|
:class "icon"
|
|
:text " ")
|
|
(label
|
|
:class "value"
|
|
:text "${round(EWW_CPU.avg,2)}%"
|
|
)
|
|
)))
|