diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-04-16 19:09:07 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-04-16 19:09:07 +0200 |
commit | 97ef7c2a1d67bb2c9c379e657fbc8e35acd6aafb (patch) | |
tree | 0db4aa1428c908959c4c7cfe60695a2e0bf395b4 | |
parent | 8601c27264508a67ab453119413fd34281b354bc (diff) |
Remove non-portable functions from config.def.h
-rw-r--r-- | config.def.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/config.def.h b/config.def.h index 6370008..1e3be56 100644 --- a/config.def.h +++ b/config.def.h @@ -51,7 +51,5 @@ static const char unknown_str[] = "n/a"; */ static const struct arg args[] = { /* function format argument */ - { cpu_perc, "[CPU %3s%%] ", NULL }, - { ram_perc, "[RAM %2s%%] ", NULL }, - { datetime, "[ %s ]", "%F %T" }, + { datetime, "%s", "%F %T" }, }; |