From 7c16d997581cf1d2e105da210b7619c79ded3b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 3 Jan 2017 17:31:35 +0100 Subject: wmstatus: don't show battery percentage >= 100% --- wmstatus.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/wmstatus.c b/wmstatus.c index 6e2e582..acdfd6e 100644 --- a/wmstatus.c +++ b/wmstatus.c @@ -1316,10 +1316,16 @@ read_battery_status (int dir, struct error **e) error_propagate (e, error); else { + struct str s; + str_init (&s); + str_append (&s, status); + // Dell is being unreasonable and seems to set charge_now // to charge_full_design when the battery is fully charged unsigned percentage = charge_now / charge_full * 100 + 0.5; - result = xstrdup_printf ("%s (%u%%)", status, MIN (percentage, 100)); + if (percentage < 100) + str_append_printf (&s, " (%u%%)", percentage); + result = str_steal (&s); } free (status); -- cgit v1.2.3