mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 21:37:17 +00:00
16 lines
246 B
Plaintext
16 lines
246 B
Plaintext
|
(defwidget cpu_module []
|
||
|
(eventbox
|
||
|
:class "module cpu"
|
||
|
|
||
|
(box
|
||
|
:space-evenly false
|
||
|
|
||
|
(label
|
||
|
:class "icon"
|
||
|
:text " ")
|
||
|
(label
|
||
|
:class "value"
|
||
|
:text "${round(EWW_CPU.avg,2)}%"
|
||
|
)
|
||
|
)))
|