Changed delimeter to accept multiple characters.

This commit is contained in:
Aidan
2019-11-04 15:34:34 -07:00
parent 690475e1e5
commit 3da92ebccb
2 changed files with 16 additions and 8 deletions

View File

@ -16,5 +16,5 @@ static const Block blocks[] = {
{"", "~/bin/statusbar/clock", 5, 0},
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = '|';
//sets delimeter between status commands. Empty string ("") means no delimeter.
static char* delim = "|";