From 72fb2fa2ae6e4cb1660af66ac04e626a6b907c15 Mon Sep 17 00:00:00 2001 From: Sky Hearn Date: Tue, 27 Feb 2024 15:45:52 -0800 Subject: [PATCH] fix my own dumb bug --- config.def.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index cecc930..d4d4298 100644 --- a/config.def.h +++ b/config.def.h @@ -66,11 +66,11 @@ static const char unknown_str[] = "n/a"; */ static const struct arg args[] = { /* function format argument */ -` //{ battery_state, "BAT0 : %s, ", "BAT0"}, - //{ battery_perc, "%s\% ", "BAT0"}, - //{ battery_remaining, "BAT0 : %s |", "BAT0"}, +` { battery_state, "BAT1 : %s, ", "BAT1"}, + { battery_perc, "%s%% ", "BAT1"}, + { battery_remaining, "BAT1 : %s |", "BAT1"}, { cpu_freq, "cpu : %s MHz ",NULL}, - { cpu_perc, "%s\% | ", NULL}, + { cpu_perc, "%s%% | ", NULL}, { datetime, "%s ", "%F %T" }, { kanji, "%s", NULL}, };