1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//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*/
{"", "sb-music", 0, 11 },
{"", "sb-audio", 0, 1},
{"", "sb-brightness", 0, 2},
{"", "sb-internet", 0, 2},
{"", "sb-battery", 60, 0},
{"", "sb-time", 10, 0},
};
//sets delimiter between status commands. NULL character ('\0') means no delimiter.
static char delim[] = " ";
static unsigned int delimLen = 5;
|