2021-10-12 16:53:42 +02:00
|
|
|
#define CMDLENGTH 50
|
2021-08-31 13:48:19 +02:00
|
|
|
#define DELIMITER "<"
|
2021-10-19 13:51:18 +02:00
|
|
|
#define LEADING_DELIMITER
|
2021-10-17 03:58:15 +02:00
|
|
|
#define CLICKABLE_BLOCKS
|
2021-03-20 10:52:45 +01:00
|
|
|
|
2021-10-12 06:36:31 +02:00
|
|
|
const Block blocks[] = {
|
2021-10-13 17:58:49 +02:00
|
|
|
BLOCK("sb-mail", 1800, 17)
|
2021-10-12 06:36:31 +02:00
|
|
|
BLOCK("sb-music", 0, 18)
|
|
|
|
BLOCK("sb-disk", 1800, 19)
|
|
|
|
BLOCK("sb-memory", 1800, 20)
|
|
|
|
BLOCK("sb-loadavg", 1800, 21)
|
2021-10-14 22:28:20 +02:00
|
|
|
BLOCK("sb-volume", 0, 22)
|
2021-10-12 06:36:31 +02:00
|
|
|
BLOCK("sb-battery", 5, 23)
|
2021-10-14 22:28:20 +02:00
|
|
|
BLOCK("sb-date", 1, 24)
|
2021-10-12 06:36:31 +02:00
|
|
|
BLOCK("sb-network", 5, 25)
|
2021-08-31 13:48:19 +02:00
|
|
|
};
|