diff options
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h index d805331..2742f74 100644 --- a/config.def.h +++ b/config.def.h @@ -58,12 +58,17 @@ static const char unknown_str[] = "n/a"; * uid UID of current user NULL * uptime system uptime NULL * username username of current user NULL + * pamixer_vol_perc Pamixer volume in percent NULL * vol_perc OSS/ALSA volume in percent mixer file (/dev/mixer) * NULL on OpenBSD/FreeBSD * wifi_essid WiFi ESSID interface name (wlan0) * wifi_perc WiFi signal in percent interface name (wlan0) */ static const struct arg args[] = { - /* function format argument */ - { datetime, "%s", "%F %T" }, + /* function format argument */ + { cpu_perc, " CPU: %s%% | ", NULL }, + { ram_used, "RAM: %s / ", NULL }, + { ram_total, "%s | ", NULL }, + { pamixer_vol_perc, "Vol: %s | ", NULL }, + { datetime, "%s ", "%a %m/%d %r" }, }; |