From ae4071ff80081b461c539001c45d6401adc732ca Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 13 May 2012 23:29:38 +0100 Subject: [PATCH] Limit window name to 64 characters by default. --- spectrwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.10.4