neodotfiles/user/.config/suckless/dwmblocks/blocks.def.h
2022-07-19 22:46:41 -04:00

18 lines
915 B
C

//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
/*Command*/ /*Update Interval*/ /*Update Signal*/
{"", "$HOME/.config/suckless/dwmblocks/scripts/memory", 1, 1},
{"", "$HOME/.config/suckless/dwmblocks/scripts/layout", 1, 1},
{"", "$HOME/.config/suckless/dwmblocks/scripts/battery", 1, 1},
{"", "$HOME/.config/suckless/dwmblocks/scripts/brightness", 1, 1},
{"", "$HOME/.config/suckless/dwmblocks/scripts/volume", 1, 1},
{"", "$HOME/.config/suckless/dwmblocks/scripts/clock", 5, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = '|';