New backup 2025-07-01 01:15:01
This commit is contained in:
parent
e0749792bb
commit
0488e35820
3 changed files with 10 additions and 8 deletions
|
@ -101,7 +101,7 @@ label {
|
|||
margin-top: 2px;
|
||||
}
|
||||
.workspaces {
|
||||
background-color: $bar-module-bg-color;
|
||||
// background-color: $bar-module-bg-color;
|
||||
border-radius: $bar-module-border-radius;
|
||||
}
|
||||
.workspaces button {
|
||||
|
@ -118,12 +118,11 @@ label {
|
|||
transition-duration: .25s;
|
||||
}
|
||||
.workspaces .focused{
|
||||
background-color: $bar-module-bg-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 {
|
||||
background-color: $bar-module-bg-color;
|
||||
box-shadow: $bar-module-active-shadow;
|
||||
color: $bar-module-fg-color;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
:class {(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? "active" : "" }
|
||||
; :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"') ? "" : ""}${(EWW_BATTERY == "") ? "" : "${jq(EWW_BATTERY,'.[].capacity?')}%"}`)
|
||||
`${(EWW_BATTERY == "" || jq(EWW_BATTERY,'.[].status?') == '"Charging"') ? " " : " "}${(EWW_BATTERY == "") ? "" : "${jq(EWW_BATTERY,'.[].capacity?')}%"}`)
|
||||
(battery_children)))
|
||||
; ${jq(EWW_BATTERY,'.[].capacity?')}%"}
|
||||
(defwidget battery_children []
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
(revealer-on-hover
|
||||
:revealvar reveal_sysdisk
|
||||
:revealvar-name "reveal_sysdisk"
|
||||
(metric :label "/home "
|
||||
(metric :label " "
|
||||
:tooltip "home"
|
||||
:value {EWW_DISK["/home"].used_perc})
|
||||
(sysdisk_children)))
|
||||
|
||||
|
@ -12,7 +13,9 @@
|
|||
:orientation "h"
|
||||
:space-evenly false
|
||||
:halign "center"
|
||||
(metric :label "/ "
|
||||
(metric :label " "
|
||||
:tooltip "root"
|
||||
:value {EWW_DISK["/"].used_perc})
|
||||
(metric :label "/boot "
|
||||
(metric :label " "
|
||||
:tooltip "boot"
|
||||
:value {EWW_DISK["/boot"].used_perc})))
|
||||
|
|
Loading…
Add table
Reference in a new issue