summaryrefslogtreecommitdiff
path: root/config.h
blob: 001af63f1ead20097d9472ae5a8a50f9cc618f82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//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*/
	{"",	"sb-music",	0,	11},
  {"",	"sb-battery",	5,	3},
	{"",	"sb-volume",	10,	10},
	// {"",	"sb-updates",	360,	12},

	 {"",	"sb-memory",	5,	14},
	// {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g",	30,		0},

  {"",   "sb-clock",     60,      1},


};

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