From 30ae3cfa42e485a00a268c332a76ae322cf32246 Mon Sep 17 00:00:00 2001 From: "eric.marin" Date: Wed, 9 Oct 2024 19:26:26 +0200 Subject: added ags and removed eww --- eww/eww.yuck | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 eww/eww.yuck (limited to 'eww/eww.yuck') diff --git a/eww/eww.yuck b/eww/eww.yuck deleted file mode 100644 index 4435928..0000000 --- a/eww/eww.yuck +++ /dev/null @@ -1,27 +0,0 @@ -(defwidget labeled-circular-progress [text value] - (overlay - (circular-progress :start-at 75 :thickness 5 - :value value) - text)) - -(defwidget stats [] - (box :orientation "vertical" - (box :orientation "horizontal" - (labeled-circular-progress :text "CPU" :value {EWW_CPU.avg}) - (labeled-circular-progress :text "RAM" :value {EWW_RAM.used_mem_perc})) - (box :orientation "horizontal" - (labeled-circular-progress :text "TMP" :value {EWW_TEMPS.THERMAL_ZONE0.temperature}) - (labeled-circular-progress :text "BAT" :value {EWW_BATTERY.BAT0.capacity})) - (box :orientation "horizontal" - (labeled-circular-progress :text "SDD" :value {EWW_DISK["/"].used_perc}) - (labeled-circular-progress :text "NET" :value {EWW_NET.WLO1.up})))) - -(defwindow test - :monitor 0 - :geometry (geometry :width "25%" :height "25%" - :anchor "center") - :stacking "fg" - :windowtype "normal" - :wm-ignore false - (stats)) - -- cgit v1.2.3