diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 21 |
1 files changed, 11 insertions, 10 deletions
@@ -64,14 +64,15 @@ static const char unknown_str[] = "n/a"; * wifi_perc WiFi signal in percent interface name (wlan0) */ static const struct arg args[] = { - /* function format argument */ - { keymap, " %s |", NULL }, - { run_command, "%s", "wpctl get-volume @DEFAULT_AUDIO_SINK@ | cut -f2 -d ':'" }, - { netspeed_rx, " | %s", "enp1s0" }, - { netspeed_tx, " %s", "enp1s0" }, - { cpu_perc, " | %s", "NULL" }, - { ram_used, " | %s", "NULL" }, - { ram_free, " %s", "NULL" }, - { disk_free, " %s ", "/" }, - { datetime, "| %s","%a %b %-d %H:%M" }, + /* function format argument */ + {keymap, " %s |", NULL}, + {run_command, "%s", + "wpctl get-volume @DEFAULT_AUDIO_SINK@ | cut -f2 -d ':'"}, + {netspeed_rx, " | %s", "enp1s0"}, + {netspeed_tx, " %s", "enp1s0"}, + {cpu_perc, "| %s", "NULL"}, + {ram_used, " | %s", "NULL"}, + {ram_free, " %s", "NULL"}, + {disk_free, " %s ", "/"}, + {datetime, "| %s", "%a %b %-d %H:%M"}, }; |