From 2bd581a47b8e355a398b87bb82fdcff547b8073a Mon Sep 17 00:00:00 2001
From: Aaron Marcher <me@drkhsh.at>
Date: Wed, 2 May 2018 08:16:21 +0200
Subject: [PATCH 1/1] battery_state: Unify unknown state with "?" symbol

---
 components/battery.c | 2 --
 1 file changed, 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);
-- 
2.20.1