dwmblocks/config.h
2023-10-15 14:40:40 +02:00

29 lines
1.0 KiB
C

//Modify this file to change what commands output to your statusbar, and recompile using the make command.
//IMPORTANT: If a command is optionally empty, it should output \n in that case.
//Otherwise the last nonzero value will be used instead. This is intended behaviour as it prevents flickering
static const Block blocks[] = {
/*Command*/ /*Update Interval*/ /*Update Signal*/
{"sb-music", 0, 11},
{"sb-appointments", 10, 8},
{"sb-dunststatus", 10, 5 },
/* {"sb-weather", 3600, 5 },*/
{"sb-pacpackages", 0, 6 },
{"sb-memory", 2, 0 },
{"sb-cpu", 2, 0 },
{"sb-nettraf", 5, 0 },
{"sb-torrent", 6, 12 },
{"sb-getmail", 20, 13},
{"sb-news", 600, 13},
{"sb-bright", 60, 2 },
{"sb-volume", 1, 10},
{"sb-current_day", 100, 0 },
{"sb-clock", 4, 0 },
{"sb-vpnstatus", 5, 9 },
{"sb-internet", 10, 0 },
{"sb-battery", 4, 7 },
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = ' ';