From 1cfb12afdddce77ab2a8c430b53faf9d8d31d920 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Sat, 8 Feb 2025 20:28:49 -0800 Subject: migration: eww --- roles/home/desktop/eww/windows/default.yuck | 2 - roles/home/desktop/eww/windows/music.yuck | 19 ------- roles/home/desktop/eww/windows/net.yuck | 38 ------------- roles/home/desktop/eww/windows/sys.yuck | 84 ----------------------------- 4 files changed, 143 deletions(-) delete mode 100644 roles/home/desktop/eww/windows/default.yuck delete mode 100644 roles/home/desktop/eww/windows/music.yuck delete mode 100644 roles/home/desktop/eww/windows/net.yuck delete mode 100644 roles/home/desktop/eww/windows/sys.yuck (limited to 'roles/home/desktop/eww/windows') diff --git a/roles/home/desktop/eww/windows/default.yuck b/roles/home/desktop/eww/windows/default.yuck deleted file mode 100644 index 77e8cf3..0000000 --- a/roles/home/desktop/eww/windows/default.yuck +++ /dev/null @@ -1,2 +0,0 @@ -(include "./windows/sys.yuck") -(include "./windows/music.yuck") diff --git a/roles/home/desktop/eww/windows/music.yuck b/roles/home/desktop/eww/windows/music.yuck deleted file mode 100644 index f6cf02b..0000000 --- a/roles/home/desktop/eww/windows/music.yuck +++ /dev/null @@ -1,19 +0,0 @@ -(defwindow music [pos gaps] - :monitor "" - :geometry (geometry - :x { - pos == "right" - ? gaps == "true" - ? "-8px" : "2px" - : "0px" - } - :y { gaps == "true" ? "-8px" : "2px" } - :width 512 - :anchor { pos == "right" ? "bottom right" : "bottom center" } - ) - :stacking "fg" - :windowtype "dock" - :wm-ignore true - - (music) -) \ No newline at end of file diff --git a/roles/home/desktop/eww/windows/net.yuck b/roles/home/desktop/eww/windows/net.yuck deleted file mode 100644 index b1e9792..0000000 --- a/roles/home/desktop/eww/windows/net.yuck +++ /dev/null @@ -1,38 +0,0 @@ -(box :class "panel" - :orientation "v" - :spacing 8 - :space-evenly true - :height {100+16} - :width {(100+8)*3+8} - - (graph - :value {net.rx} - :thickness 2 - :time-range "30s" - :min 0 - :max 100 - :dynamic true - :line-style "round" - ) - - {"Download: " + round(net.rx/1024/1024, 2) + " MiB/s (peak: " + round(net.rx_peak/1024/1024, 2) + " MiB/s)"} - - (graph - :value {net.tx} - :thickness 2 - :time-range "30s" - :min 0 - :max 100 - :dynamic true - :line-style "round" - ) - - {"Upload: " + round(net.tx/1024/1024, 2) + " MiB/s (peak: " + round(net.tx_peak/1024/1024, 2) + " MiB/s)"} - ) - - - - -(deflisten net - `/home/c/net.sh` -) \ No newline at end of file diff --git a/roles/home/desktop/eww/windows/sys.yuck b/roles/home/desktop/eww/windows/sys.yuck deleted file mode 100644 index a84e5aa..0000000 --- a/roles/home/desktop/eww/windows/sys.yuck +++ /dev/null @@ -1,84 +0,0 @@ -(defwindow sys - ;:monitor "" - :monitor "DisplayPort-1" - :geometry (geometry - :x "0px" - :y "0px" - :anchor "center" - ) - :stacking "fg" - :windowtype "dialog" - :wm-ignore false - - (box :class "main" - :orientation "v" - :spacing 8 - :space-evenly false - - (bar) - - (box - :orientation "h" - :spacing 8 - :space-evenly false - - (box - :orientation "v" - :spacing 8 - :space-evenly false - - (disks) - - (box - :orientation "h" - :spacing 8 - :space-evenly false - - (zfs) - - (box :class "unpadded panel" - (image - :path "/home/c/Pictures/suit ryo.png" - :image-width 134 - ) - ) - ) - - (centerbox :class "panel" - (image - :path "/home/c/Pictures/car.png" - :image-height 13 - ) - - "silly zone :3" - - (image - :path "/home/c/Pictures/car.png" - :image-height 13 - ) - ) - - (memory) - (cpu) - ) - - (box - :orientation "v" - :spacing 8 - :space-evenly false - - (launcher) - - (box - :orientation "h" - :spacing 8 - :space-evenly false - - (box :hexpand true (music)) - - (volume) - ) - ) - ) - ) -) -- cgit v1.2.3