diff options
-rw-r--r-- | src/print_battery_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", |