diff options
author | Himbeer <himbeer@disroot.org> | 2024-08-31 14:14:30 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-08-31 14:14:30 +0200 |
commit | 76c974d8cbaef17f40a237c132e8e8ba522a8c68 (patch) | |
tree | 90ef2906cd9f4ec77afc01251de297058abfc6e1 | |
parent | d9d969ddf1cd44da4f8616c98dfd3e7e43e9fc42 (diff) |
Fix battery charge percentages above 15 being treated as full
-rw-r--r-- | waybar/config | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/waybar/config b/waybar/config index f0d1083..b411e25 100644 --- a/waybar/config +++ b/waybar/config @@ -45,16 +45,18 @@ "on-click": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle" }, "battery": { - "format": "🔋 {icon} {capacity}% {power} W {time}", - "format-charging": "⚡ {icon} {capacity}% {power} W {time}", - "format-fully-charged": "🔌 {icon} {capacity}% {power} W {time}", + "format": "{icon} {capacity}% {power} W {time}", + "format-charging": "⚡ {capacity}% {power} W {time}", + "format-fully-charged": "🔌 {capacity}% {power} W {time}", "format-time": "{H}:{m}", "format-icons": { - "full": "✅", - "low": "🚨" + "full": "🔌", + "normal": "🔋", + "low": "🔋 🚨" }, "states": { "full": 100, + "normal": 95, "low": 15 } }, |