dwmblocks/config.h

20 lines
642 B
C
Raw Normal View History

2020-04-25 19:11:39 +02:00
//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", 3600, 11},
2020-05-06 12:04:01 +02:00
{"", "cat /tmp/mucc_time", 100, 3},
2020-04-25 19:11:39 +02:00
{"", "getpomminutesft", 100, 3},
{"", "getpomminutes", 100, 3},
/* {"", "weather", 3600, 5},*/
2020-04-25 19:11:39 +02:00
{"", "cpu", 5, 0},
{"", "getmail", 20, 13},
{"", "news", 600, 13},
{"", "getbright", 4, 2},
{"", "volume", 1, 10},
{"", "clock", 10, 0},
2020-04-25 19:11:39 +02:00
{"", "internet", 10, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = '|';