From 477ccec714190aa16ddb1778d8bde67bd1ec93ef Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Mon, 1 Sep 2025 10:30:02 -0700 Subject: [PATCH] New backup 2025-09-01 10:30:02 --- de/home/.config/eww/modules/bar/battery.yuck | 2 +- de/home/.config/eww/modules/bar/bluetooth.yuck | 2 +- de/home/.config/eww/modules/bar/network.yuck | 2 +- de/home/.config/eww/modules/bar/vpn.yuck | 2 +- de/home/.config/eww/style/bar.scss | 7 +++++++ de/home/.config/eww/style/bar/bluetooth.scss | 3 +++ de/home/.config/eww/style/bar/disk.scss | 3 +++ de/home/.config/eww/style/bar/idle-inhibitor.scss | 7 +++++++ de/home/.config/eww/style/bar/memory.scss | 3 +++ de/home/.config/eww/style/bar/networking.scss | 7 +++++++ de/home/.config/eww/style/bar/power.scss | 3 +++ de/home/.config/eww/style/bar/styles/button.scss | 4 ++++ de/home/.config/eww/style/bar/volume.scss | 3 +++ 13 files changed, 44 insertions(+), 4 deletions(-) create mode 100644 de/home/.config/eww/style/bar/styles/button.scss diff --git a/de/home/.config/eww/modules/bar/battery.yuck b/de/home/.config/eww/modules/bar/battery.yuck index 8d9f1e7..70b52b2 100644 --- a/de/home/.config/eww/modules/bar/battery.yuck +++ b/de/home/.config/eww/modules/bar/battery.yuck @@ -1,7 +1,7 @@ (defvar reveal_battery false) (defwidget battery [] (revealer-on-hover - :class "${reveal_battery}" + :class "${reveal_battery} battery" :revealvar reveal_battery :revealvar-name "reveal_battery" (label diff --git a/de/home/.config/eww/modules/bar/bluetooth.yuck b/de/home/.config/eww/modules/bar/bluetooth.yuck index 55ec793..03d311a 100644 --- a/de/home/.config/eww/modules/bar/bluetooth.yuck +++ b/de/home/.config/eww/modules/bar/bluetooth.yuck @@ -1,7 +1,7 @@ (defvar reveal_bluetooth false) (defwidget bluetooth [] (revealer-on-hover - :class "${reveal_bluetooth}" + :class "${reveal_bluetooth} bluetooth" :revealvar reveal_bluetooth :revealvar-name "reveal_bluetooth" (button :onclick 'blueman-manager' diff --git a/de/home/.config/eww/modules/bar/network.yuck b/de/home/.config/eww/modules/bar/network.yuck index b426f56..5fdf37c 100644 --- a/de/home/.config/eww/modules/bar/network.yuck +++ b/de/home/.config/eww/modules/bar/network.yuck @@ -1,7 +1,7 @@ (defvar reveal_network false) (defwidget network [] (revealer-on-hover - :class "${reveal_network}" + :class "${reveal_network} networks" :revealvar reveal_network :revealvar-name "reveal_network" (button :onclick 'nm-connection-editor' diff --git a/de/home/.config/eww/modules/bar/vpn.yuck b/de/home/.config/eww/modules/bar/vpn.yuck index 5dcc966..1dd95cd 100644 --- a/de/home/.config/eww/modules/bar/vpn.yuck +++ b/de/home/.config/eww/modules/bar/vpn.yuck @@ -1,7 +1,7 @@ (defvar reveal_vpn false) (defwidget vpn [] (revealer-on-hover - :class "${reveal_vpn}" + :class "${reveal_vpn} vpn" :revealvar reveal_vpn :revealvar-name "reveal_vpn" (button :onclick 'notify-send "test"' diff --git a/de/home/.config/eww/style/bar.scss b/de/home/.config/eww/style/bar.scss index 17b07fa..c7cbd01 100644 --- a/de/home/.config/eww/style/bar.scss +++ b/de/home/.config/eww/style/bar.scss @@ -207,6 +207,13 @@ $bar-reveal-children-bg-color: rgba($color0, 0.2); } @import "./bar/window_title.scss"; + @import "./bar/idle-inhibitor.scss"; + @import "./bar/volume.scss"; + @import "./bar/networking.scss"; + @import "./bar/bluetooth.scss"; + @import "./bar/power.scss"; + @import "./bar/disk.scss"; + @import "./bar/memory.scss"; @import "./bar/clock.scss"; .chevron box { diff --git a/de/home/.config/eww/style/bar/bluetooth.scss b/de/home/.config/eww/style/bar/bluetooth.scss index e69de29..54502f5 100644 --- a/de/home/.config/eww/style/bar/bluetooth.scss +++ b/de/home/.config/eww/style/bar/bluetooth.scss @@ -0,0 +1,3 @@ +.bluetooth { + margin: 0px 10px; +} diff --git a/de/home/.config/eww/style/bar/disk.scss b/de/home/.config/eww/style/bar/disk.scss index e69de29..ea4dabd 100644 --- a/de/home/.config/eww/style/bar/disk.scss +++ b/de/home/.config/eww/style/bar/disk.scss @@ -0,0 +1,3 @@ +.sysdisk { + margin: 0px 10px; +} diff --git a/de/home/.config/eww/style/bar/idle-inhibitor.scss b/de/home/.config/eww/style/bar/idle-inhibitor.scss index e69de29..9da69e3 100644 --- a/de/home/.config/eww/style/bar/idle-inhibitor.scss +++ b/de/home/.config/eww/style/bar/idle-inhibitor.scss @@ -0,0 +1,7 @@ +.idle-inhibitor { + $module-button-bg-color: $color1; + $module-button-fg-color: $color2; + + margin: 0px 10px; + @import "./styles/button.scss"; +} diff --git a/de/home/.config/eww/style/bar/memory.scss b/de/home/.config/eww/style/bar/memory.scss index e69de29..2693d7a 100644 --- a/de/home/.config/eww/style/bar/memory.scss +++ b/de/home/.config/eww/style/bar/memory.scss @@ -0,0 +1,3 @@ +.sysmem { + margin: 0px 10px; +} diff --git a/de/home/.config/eww/style/bar/networking.scss b/de/home/.config/eww/style/bar/networking.scss index e69de29..9dac29b 100644 --- a/de/home/.config/eww/style/bar/networking.scss +++ b/de/home/.config/eww/style/bar/networking.scss @@ -0,0 +1,7 @@ +.networks { + margin: 0px 10px; +} + +.vpn { + margin: 0px 10px; +} diff --git a/de/home/.config/eww/style/bar/power.scss b/de/home/.config/eww/style/bar/power.scss index e69de29..2a034e4 100644 --- a/de/home/.config/eww/style/bar/power.scss +++ b/de/home/.config/eww/style/bar/power.scss @@ -0,0 +1,3 @@ +.battery { + margin: 0px 10px; +} diff --git a/de/home/.config/eww/style/bar/styles/button.scss b/de/home/.config/eww/style/bar/styles/button.scss new file mode 100644 index 0000000..aa94322 --- /dev/null +++ b/de/home/.config/eww/style/bar/styles/button.scss @@ -0,0 +1,4 @@ +button { + color: $module-button-fg-color; + background-color: $module-button-bg-color; +} diff --git a/de/home/.config/eww/style/bar/volume.scss b/de/home/.config/eww/style/bar/volume.scss index e69de29..2c3c22a 100644 --- a/de/home/.config/eww/style/bar/volume.scss +++ b/de/home/.config/eww/style/bar/volume.scss @@ -0,0 +1,3 @@ +.volume { + margin: 0px 10px; +}