summaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAaron Marcher <info@nulltime.net>2017-06-12 23:59:21 +0200
committerAaron Marcher <info@nulltime.net>2017-06-12 23:59:21 +0200
commit801d944661e5ad1a36fcfc23eb48ae5e35a4bdcf (patch)
treef81bbc5203c379b28b64f7850214e79e3177e4de /config.def.h
parent211fc90b11d34db73bdab9ed61e4cb3c5c0cb0db (diff)
remove format characters from stat functions
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/config.def.h b/config.def.h
index da26001..be60df8 100644
--- a/config.def.h
+++ b/config.def.h
@@ -41,8 +41,8 @@
- wifi_perc (wifi signal in percent) [argument: wifi card interface name]
- wifi_essid (wifi essid) [argument: wifi card interface name] */
static const struct arg args[] = {
- /* function format argument */
- { cpu_perc, "[CPU %4s] ", NULL },
- { ram_perc, "[RAM %3s] ", NULL },
- { datetime, "[ %s ]", "%F %T" },
+ /* function format argument */
+ { cpu_perc, "[CPU %3s%%] ", NULL },
+ { ram_perc, "[RAM %2s%%] ", NULL },
+ { datetime, "[ %s ]", "%F %T" },
};