dwmblocks

my build of dwmblocks
git clone git://giovanniamaral.com/dwmblocks
Log | Files | Refs | README | LICENSE

blocks.def.h (546B)


      1 //Modify this file to change what commands output to your statusbar, and recompile using the make command.
      2 static const Block blocks[] = {
      3 	/*Icon*/	/*Command*/		/*Update Interval*/	/*Update Signal*/
      4 	{"",		"sb-battery",		5,			0},
      5 	{"🔆",		"sb-brightness",	5,			1},
      6 	{"",		"sb-volume",		0,			2},
      7 	{"",		"sb-mailbox",		0,			3},
      8 	{"",		"sb-torrent",		20,			0},
      9 	{"📅",		"sb-clock",		60,			0},
     10 };
     11 
     12 //sets delimiter between status commands. NULL character ('\0') means no delimiter.
     13 static char delim[] = " | ";
     14 static unsigned int delimLen = 5;