diff options
| author | Michael Stapelberg <michael@stapelberg.de> | 2009-10-16 22:21:05 +0200 | 
|---|---|---|
| committer | Michael Stapelberg <michael@stapelberg.de> | 2009-10-16 22:21:05 +0200 | 
| commit | e4bd4bd2a39515178ada751764dfd81e743784f9 (patch) | |
| tree | 97aa95bc6b0c7656377058eeea904dae2d447c04 | |
| parent | 5fc2a8a38e37ba4d2e55f8fba75a051e1a88ccc8 (diff) | |
battery: split up %remaining into %percentage and %remaining (Thanks shatter)
| -rw-r--r-- | i3status.c | 2 | ||||
| -rw-r--r-- | i3status.conf | 2 | ||||
| -rw-r--r-- | man/i3status.man | 2 | ||||
| -rw-r--r-- | src/print_battery_info.c | 22 | 
4 files changed, 16 insertions, 12 deletions
| @@ -70,7 +70,7 @@ int main(int argc, char *argv[]) {          };          cfg_opt_t battery_opts[] = { -                CFG_STR("format", "%status %remaining", CFGF_NONE), +                CFG_STR("format", "%status %percentage %remaining", CFGF_NONE),                  CFG_BOOL("last_full_capacity", false, CFGF_NONE),                  CFG_END()          }; diff --git a/i3status.conf b/i3status.conf index 2c5f276..1e120cf 100644 --- a/i3status.conf +++ b/i3status.conf @@ -26,7 +26,7 @@ ethernet eth0 {  }  battery 0 { -        format = "%status %remaining" +        format = "%status %percentage %remaining"  }  run_watch DHCP { diff --git a/man/i3status.man b/man/i3status.man index eb16bf6..cf3e2b2 100644 --- a/man/i3status.man +++ b/man/i3status.man @@ -66,7 +66,7 @@ ethernet eth0 {  }  battery 0 { -        format = "%status %remaining" +        format = "%status %percentage %remaining"  }  run_watch DHCP { diff --git a/src/print_battery_info.c b/src/print_battery_info.c index c4b15b1..aec6dee 100644 --- a/src/print_battery_info.c +++ b/src/print_battery_info.c @@ -19,6 +19,7 @@  void print_battery_info(int number, const char *format, bool last_full_capacity) {          char buf[1024];          char statusbuf[16]; +        char percentagebuf[16];          char remainingbuf[256];          const char *walk, *last;          int full_design = -1, @@ -27,6 +28,7 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)          charging_status_t status = CS_DISCHARGING;          memset(statusbuf, '\0', sizeof(statusbuf)); +        memset(percentagebuf, '\0', sizeof(percentagebuf));          memset(remainingbuf, '\0', sizeof(remainingbuf));  #if defined(LINUX) @@ -78,6 +80,9 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)                          (status == CS_CHARGING ? "CHR" :                           (status == CS_DISCHARGING ? "BAT" : "FULL"))); +        (void)snprintf(percentagebuf, sizeof(percentagebuf), "%.02f%%", +                       (((float)remaining / (float)full_design) * 100)); +          if (present_rate > 0) {                  float remaining_time;                  int seconds, hours, minutes; @@ -93,11 +98,8 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)                  minutes = seconds / 60;                  seconds -= (minutes * 60); -                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%.02f%% %02d:%02d:%02d", -                        (((float)remaining / (float)full_design) * 100), +                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02d:%02d:%02d",                          max(hours, 0), max(minutes, 0), max(seconds, 0)); -        } else { -                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%.02f%%", (((float)remaining / (float)full_design) * 100));          }  #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)          int state; @@ -135,17 +137,16 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)                          (status == CS_CHARGING ? "CHR" :                           (status == CS_DISCHARGING ? "BAT" : "FULL"))); +        (void)snprintf(percentagebuf, sizeof(percentagebuf), "%02d%%", +                       present_rate); +          if (state == 1) {                  int hours, minutes;                  minutes = remaining;                  hours = minutes / 60;                  minutes -= (hours * 60); -                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02d%% %02dh%02d", -                               present_rate, +                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02dh%02d",                                 max(hours, 0), max(minutes, 0)); -        } else { -                (void)snprintf(remainingbuf, sizeof(remainingbuf), "%02d%%", -                               present_rate);          }  #endif @@ -158,6 +159,9 @@ void print_battery_info(int number, const char *format, bool last_full_capacity)                  if (strncmp(walk+1, "status", strlen("status")) == 0) {                          printf("%s", statusbuf);                          walk += strlen("status"); +                } else if (strncmp(walk+1, "percentage", strlen("percentage")) == 0) { +                        printf("%s", percentagebuf); +                        walk += strlen("percentage");                  } else if (strncmp(walk+1, "remaining", strlen("remaining")) == 0) {                          printf("%s", remainingbuf);                          walk += strlen("remaining"); | 
