From 66d3804a5f6e6c3b6700f91e8615a4a087cdec66 Mon Sep 17 00:00:00 2001 From: Ilsix Date: Sat, 7 Dec 2024 00:52:30 +0100 Subject: [PATCH] use NerdFonts icons for battery status --- components/battery.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/battery.c b/components/battery.c index 1c753f9..fef190c 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", "\U000f008f" }, + { "Discharging", "\U000f008c" }, + { "Full", "\U000f1210" }, + { "Not charging", "\U000f0079" }, }; size_t i; char path[PATH_MAX], state[12];