forked from torrinfail/dwmblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocks.def.h
More file actions
22 lines (20 loc) · 745 Bytes
/
Copy pathblocks.def.h
File metadata and controls
22 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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*/
// {"Mem:", "free -h | awk '/^Mem/ { print $3\"/\"$2 }' | sed s/i//g",
// 30, 0},
// {"", "date '+%b %d (%a) %I:%M%p'", 5, 0},
// {"", "date '+%I:%M%p'", 60, 0},
{"", "sb-disk", 300, 0},
{"", "sb-loadavg", 1, 0},
{"", "sb-memory", 1, 0},
{"", "sb-volume", 0, 11},
{"", "sb-battery", 60, 0},
{"", "sb-network", 60, 0},
{"", "sb-date", 60, 0},
};
// sets delimeter between status commands. NULL character ('\0') means no
// delimeter.
static char delim[] = "";
static unsigned int delimLen = 5;