someblocks/blocks.def.h

12 lines
448 B
C

//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*/
{"", "music", 0, 11},
{"", "cpu", 40, 4},
{"", "battery", 40, 2},
{"", "clock", 60, 1},
};
//Sets delimiter between status commands. NULL character ('\0') means no delimiter.
static char delim[] = " | ";
static unsigned int delimLen = 3;