1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
{"PKG: ", "dwm-packages", 3600, 3},
{"VOL: ", "dwm-volume", 0, 9},
{"BAT: ", "dwm-battery", 10, 6},
{"LNG: ", "xkb-switch", 1, 0},
{"CLK: ", "dwm-clock", 60, 10},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " | ";
static unsigned int delimLen = 5;
|