This commit is contained in:
beanigen 2025-02-05 11:38:18 +08:00
parent 3c2c5bbb94
commit 1819bc7943
No known key found for this signature in database
2 changed files with 9 additions and 0 deletions

View file

@ -69,10 +69,16 @@
}, },
"battery#bat1": { "battery#bat1": {
"bat": "BAT1", "bat": "BAT1",
"interval": 5,
"format-icons": [" ", " ", " ", " ", " "],
"format": "{icon} {capacity}%",
"tooltip-format": "BAT1, {power}W" "tooltip-format": "BAT1, {power}W"
}, },
"battery#bat2": { "battery#bat2": {
"bat": "BAT2", "bat": "BAT2",
"interval": 5,
"format-icons": [" ", " ", " ", " ", " "],
"format": "{icon} {capacity}%",
"tooltip-format": "BAT2, {power}W" "tooltip-format": "BAT2, {power}W"
}, },
} }

View file

@ -62,3 +62,6 @@ window#waybar {
border-top-left-radius: 10px; border-top-left-radius: 10px;
background: #e5a6f7; background: #e5a6f7;
} }
#battery.charging {
background: @mauve;
}