Revert "Changed delimeter to accept multiple characters."

Bug was found where certain modules caused dwm to lag horribly.
Reverting until a fix can be found.
This reverts commit 3da92ebccb863394a3501ce2d9cbe60ad9aafc8c.
This commit is contained in:
Aidan
2019-11-07 13:07:19 -07:00
parent 3da92ebccb
commit 72dc44f963
2 changed files with 8 additions and 16 deletions

View File

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