aboutsummaryrefslogtreecommitdiff
path: root/blocks.def.h
blob: 73af0148664bfa2b9567f5bfd1f770e71cc0df47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//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*/
	{"",		"network",							1,	0},
	{"\uf2db ",	"cpu_usage",							5,	0},
	{"\uf85a ",	"memory_usage",							5,	0},
	{"\uf241  ",	"battery",							60,	0},
	{"\uf5df ",	"get_brightness",						0,	6},
	{"\uf028 ",	"get_volume",							0,	10},
	{"",		"get_date",							60,	0},
};

//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " | ";
static unsigned int delimLen = 5;