battery: Fix remaining on Linux
authorPatrick Iacob <iacobp@oregonstate.edu>
Sun, 27 Nov 2022 04:11:01 +0000 (20:11 -0800)
committerdrkhsh <me@drkhsh.at>
Thu, 1 Dec 2022 08:04:32 +0000 (09:04 +0100)
The current version displays the remaining time as 'n/a'.

Fixes this regression introduced in 69b2487650782f135db76078c4a7fb841cb936ac
where current_now and power_now were incorrectly replaced with current and
power when they were moved to a macro.

components/battery.c

index b12c59e7d19f48533c69eb69e68ccc340597316f..9fa1014e01ba4f1050798e3d540c0aaf9e000941 100644 (file)
@@ -14,8 +14,8 @@
        #define POWER_SUPPLY_STATUS   "/sys/class/power_supply/%s/status"
        #define POWER_SUPPLY_CHARGE   "/sys/class/power_supply/%s/charge_now"
        #define POWER_SUPPLY_ENERGY   "/sys/class/power_supply/%s/energy_now"
-       #define POWER_SUPPLY_CURRENT  "/sys/class/power_supply/%s/current"
-       #define POWER_SUPPLY_POWER    "/sys/class/power_supply/%s/power"
+       #define POWER_SUPPLY_CURRENT  "/sys/class/power_supply/%s/current_now"
+       #define POWER_SUPPLY_POWER    "/sys/class/power_supply/%s/power_now"
 
        static const char *
        pick(const char *bat, const char *f1, const char *f2, char *path,