Compare commits

...

2 Commits

Author SHA1 Message Date
541bb9a60c added disk3 2026-06-07 15:58:52 -05:00
9122f56241 made big clock bigger 2026-06-07 15:58:13 -05:00
2 changed files with 15 additions and 3 deletions

View File

@@ -129,7 +129,7 @@ circular-progress {
}
.clock {
font-size: 20px;
font-size: 40px;
font-weight: bold;
}

View File

@@ -271,14 +271,26 @@
(defwidget disk []
(box
:class "monitor"
:orientation "v"
:space-evenly false
(box
:orientation "h"
:space-evenly false
(label :text "/: ${round(EWW_DISK["/"].free/1000000000, 2)}/${round(EWW_DISK["/"].total/1000000000,2)} GB")
(circular-progress
:value {round(EWW_DISK["/"].used_perc, 1)}
:thickness 6)
(label :text "${round(EWW_DISK["/"].used_perc, 1)}% used")
))
(label :text "${round(EWW_DISK["/"].used_perc, 1)}% used"))
(box
:orientation "h"
:space-evenly false
(label :text "/disk3: ${round(EWW_DISK["/mnt/disk3"].free/1000000000, 2)}/${round(EWW_DISK["/mnt/disk3"].total/1000000000,2)} GB")
(circular-progress
:value {round(EWW_DISK["/mnt/disk3"].used_perc, 1)}
:thickness 6)
(label :text "${round(EWW_DISK["/mnt/disk3"].used_perc, 1)}% used"))
)
)
(deflisten cava "bash $HOME/.config/eww/scripts/cava.sh")