From 8aa14633175ca80b195e3f6aa37c6c274f8b2abc Mon Sep 17 00:00:00 2001 From: Ilsix Date: Mon, 2 Dec 2024 18:59:02 +0100 Subject: [PATCH] Nerdfont Icons --- components/battery.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/battery.c b/components/battery.c index ba79e12..44efd29 100644 --- a/components/battery.c +++ b/components/battery.c @@ -56,10 +56,10 @@ char *state; char *symbol; } map[] = { - { "Charging", "\uf008f" }, - { "Discharging", "\uf008c" }, + { "Charging", "\uf08f" }, + { "Discharging", "\uf08c" }, { "Full", "\uf1210" }, - { "Not charging", "\uf0079" }, + { "Not charging", "\uf079" }, }; size_t i; char path[PATH_MAX], state[12];