Manual merge of pull request #19. This adds multi-character delimiter.

Thanks to tph5595.
This commit is contained in:
aidan
2020-08-14 12:36:38 -06:00
parent 9c5aec5cd5
commit 941f415b38
2 changed files with 19 additions and 15 deletions

View File

@ -7,4 +7,5 @@ static const Block blocks[] = {
};
//sets delimeter between status commands. NULL character ('\0') means no delimeter.
static char delim = '|';
static char delim[] = " | ";
static unsigned int delimLen = 5;