2020-08-12 04:50:11 +02:00
|
|
|
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
|
|
|
|
static const Block blocks[] = {
|
2022-11-09 20:00:41 +01:00
|
|
|
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
|
2022-11-13 23:51:21 +01:00
|
|
|
{ " NET ", "/opt/dwmblocks_scripts/dwm_ipaddr", 30, 0 },
|
|
|
|
{ "MEM ", "/opt/dwmblocks_scripts/dwm_memory", 30, 0 },
|
2022-11-09 20:00:41 +01:00
|
|
|
{ "", "/opt/dwmblocks_scripts/dwm_volume withicon", 1, 10 },
|
|
|
|
{ "", "/opt/dwmblocks_scripts/dwm_battery withicon", 1, 10 },
|
2022-11-13 23:51:21 +01:00
|
|
|
{ "", "date '+%b %d (%a) %I:%M:%S %p' ", 1, 0 },
|
2020-08-12 04:50:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
|
2020-08-14 20:36:38 +02:00
|
|
|
static char delim[] = " | ";
|
|
|
|
static unsigned int delimLen = 5;
|