fix my own dumb bug

This commit is contained in:
Sky Hearn 2024-02-27 15:45:52 -08:00
parent 4ed2def931
commit 72fb2fa2ae
1 changed files with 4 additions and 4 deletions

View File

@ -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},
};