Commit ae8c717fae092a5e9a7aa0acd3d6169c20ff3aa6
1 parent
cb150c6a
Exists in
master
fix icons on linux
Showing
1 changed file
with
1 additions
and
7 deletions
Show diff stats
battery.c
| ... | ... | @@ -9,19 +9,13 @@ |
| 9 | 9 | // maximum number of batteries supported |
| 10 | 10 | #define MAXBAT 2 |
| 11 | 11 | |
| 12 | -// const char *icon[] = { FIXME: sometimes do now show up on freebsd kitty | |
| 13 | -// "\uf58d", /* 0% */ | |
| 14 | -// "\uf579", "\uf57a", "\uf57b", "\uf57c", "\uf57d", /* 50% */ | |
| 15 | -// "\uf57e", "\uf57f", "\uf580", "\uf581", "\uf578", /* 100% */ | |
| 16 | -// }; | |
| 17 | - | |
| 18 | 12 | const char *icon[] = { |
| 19 | 13 | "", /* 0% */ |
| 20 | 14 | "", "", "", "", "", /* 50% */ |
| 21 | 15 | "", "", "", "", "", /* 100% */ |
| 22 | 16 | }; |
| 23 | 17 | const char charging[] = ""; |
| 24 | -const char disconnected[] = "-"; | |
| 18 | +const char disconnected[] = ""; | |
| 25 | 19 | const char unknown[] = ""; |
| 26 | 20 | |
| 27 | 21 | typedef enum { | ... | ... |