From ccc31f0b803a924b69f23880ea9693e17f57f833 Mon Sep 17 00:00:00 2001 From: Marcel Hellwig Date: Sun, 8 Jul 2012 21:47:42 +0200 Subject: [PATCH] Added condition, for red color, when battery-time is low, namely battery is discharging --- src/print_battery_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/print_battery_info.c b/src/print_battery_info.c index f6f238c..3e0c302 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -121,7 +121,7 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char minutes = seconds / 60; seconds -= (minutes * 60); - if (threshold > 0 && seconds_remaining < 60 * threshold) + if (status == CS_DISCHARGING && threshold > 0 && seconds_remaining < 60 * threshold) START_COLOR("color_bad"); (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02d:%02d:%02d", -- 2.39.2