From 554a984fe6b8f29059cfa304778a465dce46c9d3 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Fri, 24 Oct 2008 23:45:45 +0200 Subject: Add support for differently named uevent data and hint for 9pnet_fd --- wmiistatus.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'wmiistatus.c') diff --git a/wmiistatus.c b/wmiistatus.c index e99625a..ffa86e3 100644 --- a/wmiistatus.c +++ b/wmiistatus.c @@ -189,9 +189,11 @@ static char *get_battery_info() { (void)read(fd, buf, sizeof(buf)); for (walk = buf, last = buf; (walk-buf) < 1024; walk++) if (*walk == '=') { - if (BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_FULL_DESIGN")) + if (BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_FULL_DESIGN") || + BEGINS_WITH(last, "POWER_SUPPLY_CHARGE_FULL_DESIGN")) full_design = atoi(walk+1); - else if (BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_NOW")) + else if (BEGINS_WITH(last, "POWER_SUPPLY_ENERGY_NOW") || + BEGINS_WITH(last, "POWER_SUPPLY_CHARGE_NOW")) remaining = atoi(walk+1); else if (BEGINS_WITH(last, "POWER_SUPPLY_CURRENT_NOW")) present_rate = atoi(walk+1); -- cgit v1.2.3