dwmblocks/blocks.def.h

23 lines
815 B
C
Raw Normal View History

//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*/
2022-11-12 03:52:03 +00:00
{"", "echo", 0, 0},
{"", "sb-music", 1, 0},
{"", "bar-updates", 1800, 8},
{"", "bar-weather", 3600, 9},
{"", "bar-cpu", 3, 0},
{"", "bar-ram", 3, 0},
/* {"", "bar-battery", 3, 0}, */
/* {"", "bar-brightness", 0, 11}, */
2022-11-12 03:52:03 +00:00
{"", "bar-bluetooth", 1, 0},
2023-01-18 02:33:44 +00:00
{"", "bar-keyboard", 0, 7},
2022-11-12 03:52:03 +00:00
{"", "bar-network", 1, 0},
{"", "bar-volume", 0, 10},
{"", "bar-date", 1, 0},
{"", "bar-time", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
2022-11-12 03:52:03 +00:00
static char delim[] = "";
static unsigned int delimLen = 5;