st

simple terminal
git clone git://git.suckless.org/st
Log | Files | Refs | README | LICENSE

commit e7ef3c4ce95a21cfcd0988d493f636e1d0115871
parent 8ab629031bd958d93deee9203fea32c38fe8ac30
Author: Quentin Rameau <quinq@fifth.space>
Date:   Fri, 16 Mar 2018 15:03:10 +0100

Fix regression from 69e32a6 when setting title.

Diffstat:
Mx.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x.c b/x.c @@ -1492,7 +1492,7 @@ void xsettitle(char *p) { XTextProperty prop; - DEFAULT(p, "st"); + DEFAULT(p, opt_title); Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle, &prop);