/* See LICENSE file for copyright and license details. */
-/* alsa sound */
-#define ALSA_CHANNEL "Master"
-
/* how often to update the statusbar (min value == 1) */
#define UPDATE_INTERVAL 1
/* statusbar
- battery_perc (battery percentage) [argument: battery name]
+- battery_state (battery charging state) [argument: battery name]
- cpu_perc (cpu usage in percent) [argument: NULL]
- datetime (date and time) [argument: format]
- disk_free (disk usage in percent) [argument: mountpoint]
- 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, "[ Mem %3s ]", NULL },
- { datetime, "[ %s ]", "%F %T" },
+ /* function format argument */
+ { cpu_perc, "[CPU %4s] ", NULL },
+ { ram_perc, "[RAM %3s] ", NULL },
+ { datetime, "[ %s ]", "%F %T" },
};