slstatus

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.beauhilton.com/slstatus.git
Log | Files | Refs | README | LICENSE

commit fcfc95753ef02c7498c46de802915bd88100d298
parent fd512b1448ee97ed06f71e4637b890bb69e5e5c2
Author: Beau <cbeauhilton@gmail.com>
Date:   Thu,  9 Jun 2022 08:36:22 -0500

small change to test updates

Diffstat:
Mconfig.h | 20++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/config.h b/config.h @@ -1,5 +1,5 @@ /* interval between updates (in ms) */ -const unsigned int interval = 1000; +const unsigned int interval = 900; /* text to show if no value can be retrieved */ static const char unknown_str[] = ""; @@ -8,15 +8,15 @@ static const char unknown_str[] = ""; #define MAXLEN 2048 static const struct arg args[] = { - /* function format argument */ - { run_command, " %s |", "mpc current" }, - { wifi_essid, " %s ", "wlan0" }, - { wifi_perc, " %s%% ", "wlan0" }, - /* { netspeed_rx, " i%6.4s ", "wlan0" }, */ - /* { netspeed_tx, " o%6.4s ", "wlan0" }, */ - { run_command, "| v %s |", "pamixer --get-volume-human" }, - { battery_perc, " b %s%% |", "BAT0" }, - { datetime, " %s ", "%F %I:%M %p" }, + /* function format argument */ + {run_command, " %s |", "mpc current"}, + {wifi_essid, " %s ", "wlan0"}, + {wifi_perc, " %s%% ", "wlan0"}, + /* { netspeed_rx, " i%6.4s ", "wlan0" }, */ + /* { netspeed_tx, " o%6.4s ", "wlan0" }, */ + {run_command, "| v %s |", "pamixer --get-volume-human"}, + {battery_perc, " b %s%% |", "BAT0"}, + {datetime, " %s ", "%F %I:%M %p"}, }; /*