dotfiles/_suckless/dwmblocks/blocks.h

15 lines
778 B
C
Raw Normal View History

2021-06-19 15:05:17 +02:00
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
static const Block blocks[] = {
2021-07-26 16:52:58 +02:00
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
2022-02-20 20:38:26 +01:00
{"", "sb-emerge", 5, 0 },
2021-07-26 16:52:58 +02:00
{"", "sb-mail", 180, 16 },
{"", "sb-volume", 0, 12 },
{"", "sb-network", 1, 0 },
{"", "sb-battery", 3, 0 },
{"\ue8b5 ", "date '+%F %I:%M:%S %p'", 1, 0 },
2021-06-19 15:05:17 +02:00
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
2022-02-20 20:38:26 +01:00
static char delim[] = " ";
2021-06-19 15:05:17 +02:00
static unsigned int delimLen = 1;