Browse Source

Fixed issue with empty command delimiter

This meant that the delimiters were added when when both the icon and
output where empty.
master
aidan 5 years ago
parent
commit
13c7700f34
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      dwmblocks.c

+ 2
- 0
dwmblocks.c View File

@ -56,6 +56,8 @@ void getcmd(const Block *block, char *output)
int i = strlen(block->icon); int i = strlen(block->icon);
fgets(output+i, CMDLENGTH-i-delimLen, cmdf); fgets(output+i, CMDLENGTH-i-delimLen, cmdf);
i = strlen(output); i = strlen(output);
if (i == 0)//return if block and command output are both empty
return;
if (delim[0] != '\0') { if (delim[0] != '\0') {
//only chop off newline if one is present at the end //only chop off newline if one is present at the end
i = output[i-1] == '\n' ? i-1 : i; i = output[i-1] == '\n' ? i-1 : i;


Loading…
Cancel
Save