slstatus

My fork of https://tools.suckless.org/slstatus/
git clone https://git.inz.fi/slstatus
Log | Files | Refs | README | LICENSE

commit cceeec0efada64579525b90b30e5597cd24dfc6c
parent b11dd2db0ebfc0b20ef2d5a972f13cf39bdd0b31
Author: Aaron Marcher <info@nulltime.net>
Date:   Thu, 30 Mar 2017 17:32:20 +0200

loading thresholds state

Diffstat:
Mslstatus.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/slstatus.c b/slstatus.c @@ -140,6 +140,8 @@ battery_state(const char *bat) return smprintf("-"); } else if (strcmp(state, "Full") == 0) { return smprintf("="); + } else if (strcmp(state, "Unknown") == 0) { + return smprintf("/"); } else { return smprintf("?"); }