New backup 2025-07-01 01:15:01

This commit is contained in:
Penelope Gwen 2025-07-01 01:15:01 -07:00
parent e0749792bb
commit 0488e35820
3 changed files with 10 additions and 8 deletions

View file

@ -101,7 +101,7 @@ label {
margin-top: 2px; margin-top: 2px;
} }
.workspaces { .workspaces {
background-color: $bar-module-bg-color; // background-color: $bar-module-bg-color;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }
.workspaces button { .workspaces button {
@ -118,12 +118,11 @@ label {
transition-duration: .25s; transition-duration: .25s;
} }
.workspaces .focused{ .workspaces .focused{
background-color: $bar-module-bg-color;
color: $bar-module-fg-color; color: $bar-module-fg-color;
box-shadow: $bar-module-active-shadow; // box-shadow: $bar-module-active-shadow;
text-shadow: 0px 0px 2px $color4,0px 0px 2px $color4,0px 0px 2px $color4;
} }
button.active { button.active {
background-color: $bar-module-bg-color;
box-shadow: $bar-module-active-shadow; box-shadow: $bar-module-active-shadow;
color: $bar-module-fg-color; color: $bar-module-fg-color;
} }

View file

@ -7,7 +7,7 @@
:class {(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? "active" : "" } :class {(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? "active" : "" }
; :tooltip "${jq(EWW_BATTERY,'.[].capacity?')}%" ; :tooltip "${jq(EWW_BATTERY,'.[].capacity?')}%"
; {(EWW_BATTERY == "") ? "" : `${(jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? " ${jq(EWW_BATTERY,'.[].capacity?')}%" : " ${jq(EWW_BATTERY,'.[].capacity?')}%"}`}) ; {(EWW_BATTERY == "") ? "" : `${(jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? " ${jq(EWW_BATTERY,'.[].capacity?')}%" : " ${jq(EWW_BATTERY,'.[].capacity?')}%"}`})
`${(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? "" : ""}${(EWW_BATTERY == "") ? "" : "${jq(EWW_BATTERY,'.[].capacity?')}%"}`) `${(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? " " : " "}${(EWW_BATTERY == "") ? "" : "${jq(EWW_BATTERY,'.[].capacity?')}%"}`)
(battery_children))) (battery_children)))
; ${jq(EWW_BATTERY,'.[].capacity?')}%"} ; ${jq(EWW_BATTERY,'.[].capacity?')}%"}
(defwidget battery_children [] (defwidget battery_children []

View file

@ -3,7 +3,8 @@
(revealer-on-hover (revealer-on-hover
:revealvar reveal_sysdisk :revealvar reveal_sysdisk
:revealvar-name "reveal_sysdisk" :revealvar-name "reveal_sysdisk"
(metric :label "/home " (metric :label " "
:tooltip "home"
:value {EWW_DISK["/home"].used_perc}) :value {EWW_DISK["/home"].used_perc})
(sysdisk_children))) (sysdisk_children)))
@ -12,7 +13,9 @@
:orientation "h" :orientation "h"
:space-evenly false :space-evenly false
:halign "center" :halign "center"
(metric :label "/ " (metric :label " "
:tooltip "root"
:value {EWW_DISK["/"].used_perc}) :value {EWW_DISK["/"].used_perc})
(metric :label "/boot " (metric :label " "
:tooltip "boot"
:value {EWW_DISK["/boot"].used_perc}))) :value {EWW_DISK["/boot"].used_perc})))