dwmblocks/blocks.def.h

17 lines
616 B
C
Raw Normal View History

//Modify this file to change what commands output to your statusbar, and recompile using the make command.
2021-02-13 19:58:49 +01:00
//To send a signal : kill -(34+signal) $(pidof dwmblocks)
static const Block blocks[] = {
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
2021-02-16 12:17:21 +01:00
{"", "sb-mailbox", 60, 6},
2021-02-13 19:58:49 +01:00
{"", "sb-music", 0, 5},
{"", "sb-volume", 0, 4},
{"", "sb-internet", 5, 3},
{"", "sb-battery", 5, 2},
{"", "sb-date", 60, 1},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
2021-02-16 20:47:50 +01:00
static char delim[] = "|";
static unsigned int delimLen = 1;