1
0
mirror of https://github.com/tiyn/dwmblocks.git synced 2025-07-05 12:37:47 +02:00
dwmblocks/config.c
2024-03-09 02:52:53 +01:00

19 lines
417 B
C

#include "config.h"
#include "block.h"
#include "util.h"
Block blocks[] = {
{"player", 5, 9},
{"memory", 30, 6},
{"cpu", 30, 5},
{"gpu", 30, 8},
{"disk /home", 1800, 7},
{"volume", 120, 4},
{"battery BAT0", 120, 2},
{"internet", 30, 3},
{"clock", 60, 1},
};
const unsigned short blockCount = LEN(blocks);