diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:16:21 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:16:21 +0200 |
commit | 89c4fd88a365f94d91e4c41bb96f6806d2f8d483 (patch) | |
tree | 544377d4e9e035e03b58be645a4775aec055bb70 /components/battery.c | |
parent | db0de6e16e3b16e16c7cc9ce4f391db8434dbaa9 (diff) |
battery_state: Unify unknown state with "?" symbol
Diffstat (limited to 'components/battery.c')
-rw-r--r-- | components/battery.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/battery.c b/components/battery.c index 86ea2a1..e997e4c 100644 --- a/components/battery.c +++ b/components/battery.c @@ -30,7 +30,6 @@ { "Charging", "+" }, { "Discharging", "-" }, { "Full", "=" }, - { "Unknown", "/" }, }; size_t i; char path[PATH_MAX], state[12]; @@ -89,7 +88,6 @@ } map[] = { { APM_AC_ON, "+" }, { APM_AC_OFF, "-" }, - { APM_AC_UNKNOWN, "/" }, }; fd = open("/dev/apm", O_RDONLY); |