diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2024-12-27 21:06:24 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2024-12-27 21:06:24 +0000 |
| commit | f9380429c527d008a35380dfc70ef8153e4a7a13 (patch) | |
| tree | cd82f5f4f52e77572e1dde7afffc21faaff09335 /status.c | |
| parent | a5f734afc52d2a46e3938e581dd1bb94bd87f0bd (diff) | |
Save icons as text instead of their UTF8 codes
Diffstat (limited to 'status.c')
| -rw-r--r-- | status.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -51,17 +51,17 @@ struct battery_status { }; char* battery_level_icon[] = { - "\uf579", - "\uf57a", - "\uf57b", - "\uf57c", - "\uf57d", - "\uf57e", - "\uf57f", - "\uf580", - "\uf581", - "\uf578", - "\uf578", + "", /* "\uf579" */ + "", /* "\uf57a" */ + "", /* "\uf57b" */ + "", /* "\uf57c" */ + "", /* "\uf57d" */ + "", /* "\uf57e" */ + "", /* "\uf57f" */ + "", /* "\uf580" */ + "", /* "\uf581" */ + "", /* "\uf578" */ + "", /* "\uf578" */ }; struct battery_status get_battery_status(const char* buf) { |
