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.
This commit is contained in:
Cem Keylan 2019-10-02 11:31:54 +03:00 committed by Aaron Marcher
parent 2b0f50d1aa
commit 3ac985eb03
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@
} map[] = {
{ "Charging", "+" },
{ "Discharging", "-" },
{ "Full", "o" },
};
size_t i;
char path[PATH_MAX], state[12];