summaryrefslogtreecommitdiff
path: root/suckless/dwmblocks/blocks.h
blob: ec01b6c95dbaa4231b2121bbfde4d13f9f53c585 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* NOTE: `internet-status` is available in my scripts repository, linked below: */
/* https://git.schark.online/scripts */
/* https://github.com/jordanscharkey/scripts */

static const Block blocks[] = {
	/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
	{"\ Volume:", "pulsemixer --get-volume | sed 's/ .*//'", 5, 0},
	{"Internet:", "internet-status", 10, 0},
	{"", "date '+%b %d (%a) %I:%M%p'", 30, 0},
};

static char delim[] = " | ";
static unsigned int delimLen = 5;