remove stray backtick and fix formatting
This commit is contained in:
parent
b0f33c6d3d
commit
7045c6bb8d
|
@ -66,7 +66,7 @@ static const char unknown_str[] = "n/a";
|
||||||
*/
|
*/
|
||||||
static const struct arg args[] = {
|
static const struct arg args[] = {
|
||||||
/* function format argument */
|
/* function format argument */
|
||||||
` { battery_state, "BAT1 : %s, ", "BAT1"},
|
{ battery_state, "BAT1 : %s, ", "BAT1"},
|
||||||
{ battery_perc, "%s%% ", "BAT1"},
|
{ battery_perc, "%s%% ", "BAT1"},
|
||||||
{ battery_remaining, "BAT1 : %s |", "BAT1"},
|
{ battery_remaining, "BAT1 : %s |", "BAT1"},
|
||||||
{ cpu_freq, "cpu : %s MHz ",NULL},
|
{ cpu_freq, "cpu : %s MHz ",NULL},
|
||||||
|
|
8
config.h
8
config.h
|
@ -66,11 +66,11 @@ static const char unknown_str[] = "n/a";
|
||||||
*/
|
*/
|
||||||
static const struct arg args[] = {
|
static const struct arg args[] = {
|
||||||
/* function format argument */
|
/* function format argument */
|
||||||
` { battery_state, "BAT1 : %s, ", "BAT1"},
|
{ battery_state, "BAT1 : %s, ", "BAT1"},
|
||||||
{ battery_perc, "%s%% ", "BAT1"},
|
{ battery_perc, "%s%% ", "BAT1"},
|
||||||
{ battery_remaining, "BAT1 : %s |", "BAT1"},
|
{ battery_remaining, "%s | ", "BAT1"},
|
||||||
{ cpu_freq, "cpu : %s MHz ",NULL},
|
{ cpu_freq, "cpu : %sHz ",NULL},
|
||||||
{ cpu_perc, "%s%% | ", NULL},
|
{ cpu_perc, "%s%% | ", NULL},
|
||||||
{ datetime, "%s ", "%F %T" },
|
{ datetime, "%s ", "%F %T" },
|
||||||
{ kanji, "%s", NULL},
|
{ kanji, "%s ", NULL},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue