commit 3ac985eb0338773cfb1d1446fc0751f1f2afea94
Author:     Cem Keylan <[email protected]>
AuthorDate: Wed Oct 2 11:31:54 2019 +0300
Commit:     Aaron Marcher <[email protected]>
CommitDate: Mon Nov 30 21:23:26 2020 +0100

    Full battery indicator
    
    When you reach full charge the symbol would change
    to a question mark "?" as "Full" was not defined,
    now it changes to an "o" instead.

diff --git a/components/battery.c b/components/battery.c
index 07b6ac1..f2b0f14 100644
--- a/components/battery.c
+++ b/components/battery.c
@@ -52,6 +52,7 @@
                } map[] = {
                        { "Charging",    "+" },
                        { "Discharging", "-" },
+                       { "Full",        "o" },
                };
                size_t i;
                char path[PATH_MAX], state[12];

Reply via email to