1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
diff -ruN ../slstatus-clean/config.def.h ./config.def.h
--- ../slstatus-clean/config.def.h 2025-04-29 20:02:03.000000000 -0700
+++ ./config.def.h 2025-12-02 22:21:37.469231591 -0800
@@ -66,5 +66,9 @@
*/
static const struct arg args[] = {
/* function format argument */
- { datetime, "%s", "%F %T" },
+ { battery_perc, "BAT: %s%% | ", "BAT0" },
+ { cpu_perc, "CPU: %s%% | ", NULL },
+ { ram_perc, "RAM: %s%% | ", NULL },
+ { keymap, "KEY: %s | ", NULL },
+ { datetime, "%s", "%F %T" },
};
|