From 785861cbaf6ef66ea395590757de8d92cb8baa41 Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Fri, 18 Jul 2025 11:45:02 -0700 Subject: [PATCH] New backup 2025-07-18 11:45:02 --- de/home/.config/eww/eww.scss | 19 +++++++++++++++---- .../.config/eww/modules/bar/bluetooth.yuck | 4 ++-- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/de/home/.config/eww/eww.scss b/de/home/.config/eww/eww.scss index 5919fad..498b1b9 100644 --- a/de/home/.config/eww/eww.scss +++ b/de/home/.config/eww/eww.scss @@ -117,13 +117,24 @@ circular-progress { min-width: $bar-module-width; &:hover { text-shadow: $bar-module-hover-shadow; -// box-shadow: 0px 0px 3px 1px green; -// transition: text-shadow 1s; + transition: all 0.3s; // background-color: rgba($color1,0.5); // border: 1px solid $bar-module-fg-color; } } +.reveal_children>button { + image { + opacity: 0.5; + transition: all 0.5s; + } + &:hover image { + opacity: 1; + box-shadow: 0px 0px 5px green; +// transition: all 0.3s; + } +} + .reveal_children>box, .reveal_children>widget, .reveal_children>button { @@ -174,8 +185,8 @@ label { .workspaces button:hover, .rightgroup button:hover, .leftgroup button:hover { - text-shadow: 1px 1px 1px rgba($color2,1); -// text-shadow: $bar-module-hover-shadow; +// text-shadow: 1px 1px 1px rgba($color2,1); + text-shadow: $bar-module-hover-shadow; color: $bar-hover-fg-color; transition: all 0.2s; } diff --git a/de/home/.config/eww/modules/bar/bluetooth.yuck b/de/home/.config/eww/modules/bar/bluetooth.yuck index 2aee497..bc40586 100644 --- a/de/home/.config/eww/modules/bar/bluetooth.yuck +++ b/de/home/.config/eww/modules/bar/bluetooth.yuck @@ -4,7 +4,7 @@ :revealvar reveal_bluetooth :revealvar-name "reveal_bluetooth" (button :onclick 'blueman-manager' - :class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : ""} + :class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : "inactive"} "") (bluetooth_children :array bluetooth_status))) @@ -16,5 +16,5 @@ (for device in array (button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'} - :class {(device.connected == "yes") ? "active" : ""} + :class {(device.connected == "yes") ? "active" : "inactive"} "${device.icon}"))))