From bf5fbec810a920e3835b1eb8edc8808ce229bcf7 Mon Sep 17 00:00:00 2001 From: Ilsix Date: Mon, 2 Dec 2024 18:57:01 +0100 Subject: [PATCH] Nerdfont Icons --- components/battery.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/battery.c b/components/battery.c index 1c753f9..af3ecc7 100644 --- a/components/battery.c +++ b/components/battery.c @@ -56,10 +56,10 @@ char *state; char *symbol; } map[] = { - { "Charging", "+" }, - { "Discharging", "-" }, - { "Full", "o" }, - { "Not charging", "o" }, + { "Charging", "\uf008f" }, + { "Discharging", "\uf008c" }, + { "Full", "\uf1210" }, + { "Not charging", "\uf079" }, }; size_t i; char path[PATH_MAX], state[12];