aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-08-31 14:14:30 +0200
committerHimbeer <himbeer@disroot.org>2024-08-31 14:14:30 +0200
commit76c974d8cbaef17f40a237c132e8e8ba522a8c68 (patch)
tree90ef2906cd9f4ec77afc01251de297058abfc6e1
parentd9d969ddf1cd44da4f8616c98dfd3e7e43e9fc42 (diff)
Fix battery charge percentages above 15 being treated as full
-rw-r--r--waybar/config12
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
}
},