summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authordrkhsh <me@drkhsh.at>2022-10-27 23:47:01 +0200
committerdrkhsh <me@drkhsh.at>2022-10-28 01:03:20 +0200
commit3b86e4b5efd0f6759b2634b607e74b938af30a60 (patch)
tree77b5e22e41c148e5f6ff8d5ea857d10328267a24 /components
parent21327e0373189f9e9964f34fb5a15639d00575aa (diff)
downloadslstatus-3b86e4b5efd0f6759b2634b607e74b938af30a60.tar.gz
battery: Refactor remaining on OpenBSD
Fixes up overly complicated line, by splitting up logic
Diffstat (limited to 'components')
-rw-r--r--components/battery.c7
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 "";
}