1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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/ .*//'", 1, 0},
{"Battery:", "battery-life", 30, 0},
{"Internet:", "internet-status", 10, 0},
{"", "date '+%b %d (%a) %I:%M%p'", 30, 0},
};
static char delim[] = " | ";
static unsigned int delimLen = 5;
|