diff options
author | drkhsh <me@drkhsh.at> | 2022-10-27 23:47:01 +0200 |
---|---|---|
committer | drkhsh <me@drkhsh.at> | 2022-10-28 01:03:20 +0200 |
commit | 3b86e4b5efd0f6759b2634b607e74b938af30a60 (patch) | |
tree | 77b5e22e41c148e5f6ff8d5ea857d10328267a24 | |
parent | 21327e0373189f9e9964f34fb5a15639d00575aa (diff) | |
download | slstatus-3b86e4b5efd0f6759b2634b607e74b938af30a60.tar.gz |
battery: Refactor remaining on OpenBSD
Fixes up overly complicated line, by splitting up logic
-rw-r--r-- | components/battery.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/components/battery.c b/components/battery.c index 0fe70ff..ee2fe71 100644 --- a/components/battery.c +++ b/components/battery.c @@ -182,12 +182,13 @@ battery_remaining(const char *unused) { struct apm_power_info apm_info; + unsigned int h, m; if (load_apm_power_info(&apm_info)) { if (apm_info.ac_state != APM_AC_ON) { - return bprintf("%uh %02um", - apm_info.minutes_left / 60, - apm_info.minutes_left % 60); + h = apm_info.minutes_left / 60; + m = apm_info.minutes_left % 60; + return bprintf("%uh %02um", h, m); } else { return ""; } |