summaryrefslogtreecommitdiff
path: root/blocks.def.h
diff options
context:
space:
mode:
authoraidan <aidan@Edward.localdomain>2020-08-14 12:36:38 -0600
committeraidan <aidan@Edward.localdomain>2020-08-14 12:36:38 -0600
commit941f415b3821bf4f3493a0864c05a1af313b22bc (patch)
treeeb2f05f8dfdf3e6b6c35ec8f97e030da17618660 /blocks.def.h
parent9c5aec5cd5a4a1128cbe1031ccec8c403e4bfecd (diff)
Manual merge of pull request #19. This adds multi-character delimiter.
Thanks to tph5595.
Diffstat (limited to 'blocks.def.h')
-rw-r--r--blocks.def.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/blocks.def.h b/blocks.def.h
index 35738db..9c22d68 100644
--- a/blocks.def.h
+++ b/blocks.def.h
@@ -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;