From 29485b43b0712062a0ccb99a1301ef071252a95e Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 13 Apr 2020 01:05:25 -0400 Subject: no longer (unused) icon slot --- dwmblocks.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'dwmblocks.c') diff --git a/dwmblocks.c b/dwmblocks.c index 0cd0b54..7d7a564 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -8,7 +8,6 @@ #define CMDLENGTH 50 typedef struct { - char* icon; char* command; unsigned int interval; unsigned int signal; @@ -56,7 +55,6 @@ void getcmd(const Block *block, char *output) output[0] = block->signal; output++; } - strcpy(output, block->icon); char* cmd; FILE *cmdf; if (button) @@ -74,10 +72,8 @@ void getcmd(const Block *block, char *output) } if (!cmdf) return; - char c; - int i = strlen(block->icon); - fgets(output+i, CMDLENGTH-i, cmdf); - i = strlen(output); + fgets(output, CMDLENGTH, cmdf); + int i = strlen(output); if (delim != '\0' && i) output[i++] = delim; output[i++] = '\0'; -- cgit v1.2.3