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
commitabbaa7af4401bbece8c9a9cb27408a0c84421762 (patch)
treef81bbc5203c379b28b64f7850214e79e3177e4de /config.def.h
parent832b21ca4b4ba866e010a6f52c0f84919c7123f2 (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" },
};