From: Tiago Cunha Date: Sun, 13 May 2012 22:29:38 +0000 (+0100) Subject: Limit window name to 64 characters by default. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=ae4071ff80081b461c539001c45d6401adc732ca;p=spectrwm.git Limit window name to 64 characters by default. --- diff --git a/spectrwm.c b/spectrwm.c index 51f2f9a..09c7ede 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -1472,7 +1472,7 @@ bar_fmt(char *fmtexp, char *fmtnew, struct swm_region *r, size_t sz) strlcat(fmtnew, " ", sz); if (window_name_enabled) - strlcat(fmtnew, "+W", sz); + strlcat(fmtnew, "+64W", sz); /* finally add the action script output and the version */ strlcat(fmtnew, " +A +V", sz);