//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*/
|
|
{ "Docker: ", "status-docker", 60, 0 },
|
|
|
|
{ "Pkgs: ", "status-pkgs", 1800, 0 },
|
|
|
|
{ "Disk: ", "status-disk-usage", 30, 0 },
|
|
{ "Mem: ", "status-memory", 30, 0 },
|
|
|
|
{ "Net: ", "status-internet", 60, 0 },
|
|
|
|
{ "", "status-temperature", 30, 0 },
|
|
|
|
{ "", "status-battery", 60, 0 },
|
|
|
|
{ "", "status-datetime", 60, 0 },
|
|
};
|
|
|
|
//sets delimiter between status commands. NULL character ('\0') means no delimiter.
|
|
static char delim[] = " | ";
|
|
static unsigned int delimLen = 5;
|