mirror of https://github.com/tiyn/dwmblocks
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
17 lines
346 B
1 year ago
|
#include "config.h"
|
||
|
|
||
|
#include "block.h"
|
||
|
#include "util.h"
|
||
|
|
||
|
Block blocks[] = {
|
||
|
{"memory", 10, 6},
|
||
|
{"cpu", 10, 5},
|
||
|
{"disk /", 1800, 7},
|
||
|
{"volume", 0, 4},
|
||
|
{"battery BAT0", 5, 2},
|
||
|
{"internet", 5, 3},
|
||
|
{"clock", 60, 1},
|
||
|
};
|
||
|
|
||
|
const unsigned short blockCount = LEN(blocks);
|