diff options
| author | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-11-07 19:23:29 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <doug@douglasrumbaugh.com> | 2022-11-07 19:23:29 -0500 |
| commit | 00fb5b8987082d7fbca1e539187ce53134b3155e (patch) | |
| tree | 0cf01f56df1ed55dfaefa301de2b7173c05b3873 | |
| parent | 2e28a5bbd137d88e74eddf2c171537f9d2e3e6d9 (diff) | |
| download | dwmblocks-00fb5b8987082d7fbca1e539187ce53134b3155e.tar.gz | |
Increased statusbar buffer size
| -rw-r--r-- | dwmblocks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dwmblocks.c b/dwmblocks.c index 709ce87..0794df4 100644 --- a/dwmblocks.c +++ b/dwmblocks.c @@ -37,7 +37,7 @@ static Display *dpy; static int screen; static Window root; static char statusbar[LENGTH(blocks)][CMDLENGTH] = {0}; -static char statusstr[2][256]; +static char statusstr[2][512] = {0}; static int statusContinue = 1; static void (*writestatus) () = setroot; |