1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//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*/
{"VPN: ", "bar_mullvad_vpn.sh", 1, 0},
{"UPGR: ", "bar_updates.sh", 600, 0},
{"", "bar_net_activity.sh", 1, 0},
{"", "bar_internet.sh", 1, 0},
{"DISK: ", "bar_disk.sh", 15, 0},
{"VOL: ", "bar_volume.sh", 1, 0},
{"MEM: ", "bar_memory.sh", 2, 0},
{"CPU: ", "bar_cpu.sh", 1, 0},
{"BAT: ", "bar_battery.sh", 10, 0},
{"", "bar_time.sh", 1, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim[] = " | ";
static unsigned int delimLen = 5;
|