My configuration of sxmo fork of suckless dwm.

git clone git://watertao.xyz/programs/sxmo-dwm.git

commit 04e3e452fa46bd8c9fea02e0521e7bed64c067a8
parent 9206674c563f9fcf1407c5242fddfe0b3986783d
Author: Miles Alan <m@milesalan.com>
Date:   Fri,  1 May 2020 19:55:23 -0500

Fix title update

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

diff --git a/dwm.c b/dwm.c @@ -1623,7 +1623,7 @@ propertynotify(XEvent *e) break; } if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) { - //updatetitle(c); + updatetitle(c); if (c == c->mon->sel) drawbar(c->mon); }