blocks/config.def.h
2023-05-10 13:08:36 -06:00

19 lines
858 B
C

//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*/
{"", "git-check-remote", 600, 20},
{" 󰕾 ", "volstat", 0, 10},
{"", "micstat", 0, 11},
/* {" 󰖩 ", "iwdstat", 2, 0},*/
{" 󰌌 ", "layoutstat", 0, 12},
{"", "memorystat", 1, 0},
{"", "cpustat", 1, 0},
{" 󰯎 ", "netstat", 2, 0},
/* {" 󰁹 ", "batstat", 1, 0},*/
{"", "date '+%I:%M%p'", 1, 0},
{"", "date '+%a %Y-%m-%d'", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " ";
static unsigned int delimLen = 5;