//Modify this file to change what commands output to your statusbar, and recompile using the make command. #define MODULE_ROOT "$HOME/.config/suckless/dwmblocks/modules/" static const Block blocks[] = { /*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/ {" 󰎇 ", MODULE_ROOT "status-music", 0, 1}, {"󰖩 ", MODULE_ROOT "status-network", 10, 0}, {" ", MODULE_ROOT "status-battery", 60, 0}, {"󰕾 ", MODULE_ROOT "status-volume", 0, 2}, {" ", MODULE_ROOT "status-datetime", 60, 0}, }; //sets delimiter between status commands. NULL character ('\0') means no delimiter. static char delim[] = " | "; static unsigned int delimLen = 5;