dwmblocks-async/config.h

23 lines
412 B
C
Raw Normal View History

2021-03-20 09:52:45 +00:00
#define CMDLENGTH 50
2021-08-31 11:48:19 +00:00
#define DELIMITER "<"
2021-03-20 09:52:45 +00:00
2021-04-17 10:17:40 +00:00
typedef struct {
char* command;
unsigned int interval;
unsigned int signal;
char output[CMDLENGTH];
int pipe[2];
} Block;
static Block blocks[] = {
{"sb-mail", 1800, 17},
{"sb-music", 0, 18},
{"sb-disk", 1800, 19},
{"sb-memory", 10, 20},
{"sb-loadavg", 10, 21},
{"sb-volume", 0, 22},
{"sb-battery", 5, 23},
{"sb-date", 20, 24},
{"sb-network", 5, 25}
2021-08-31 11:48:19 +00:00
};