mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 10:39:41 +00:00
16 lines
234 B
Plaintext
16 lines
234 B
Plaintext
|
(defwidget uptime_module []
|
||
|
(eventbox
|
||
|
:class "module uptime"
|
||
|
|
||
|
(box
|
||
|
:space-evenly false
|
||
|
|
||
|
(label
|
||
|
:class "icon"
|
||
|
:text " ")
|
||
|
(label
|
||
|
:class "value"
|
||
|
:text {uptime}
|
||
|
)
|
||
|
)))
|