14 lines
679 B
C
14 lines
679 B
C
//Modify this file to change what commands output to your statusbar, and recompile using the make command.
|
|
static const Block blocks[] = {
|
|
/*Icon*/ /*Command*/ /*Update Interval*/ /*Update Signal*/
|
|
{" ♫ ", "volstat", 0, 10},
|
|
/* {" 直 ", "iwdstat", 2, 0},*/
|
|
{" ", "layoutstat", 0, 11},
|
|
/* {" ", "batstat", 2, 0},*/
|
|
{" ", "date '+%I:%M%p'", 2, 0},
|
|
{" ", "date '+%a %Y-%m-%d'", 2, 0},
|
|
};
|
|
|
|
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
|
|
static char delim[] = " ";
|
|
static unsigned int delimLen = 5;
|