From: Jasper Lievisse Adriaanse Date: Mon, 10 Mar 2014 09:22:47 +0000 (+0100) Subject: For the %percentage display of batteries, drop the leading '0' for values < 10. X-Git-Tag: 2.9~26 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=52814295a0b3a0785631256e9e2dc6b8139e2be8;p=i3%2Fi3status For the %percentage display of batteries, drop the leading '0' for values < 10. --- diff --git a/src/print_battery_info.c b/src/print_battery_info.c index bd3ff5c..aaef46e 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -292,7 +292,8 @@ void print_battery_info(yajl_gen json_gen, char *buffer, int number, const char } (void)snprintf(statusbuf, sizeof(statusbuf), "%s", BATT_STATUS_NAME(status)); - (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", apm_info.battery_life); + /* integer_battery_capacity is implied as battery_life is already in whole numbers. */ + (void)snprintf(percentagebuf, sizeof(percentagebuf), "%.00d%%", apm_info.battery_life); if (status == CS_DISCHARGING && low_threshold > 0) { if (strncmp(threshold_type, "percentage", strlen(threshold_type)) == 0