Certain UTF-8 glyphs cause issues with underlying libraries, causing
dwm to crash. Websites such as Twitter will frequently include such
glyphs in their title, causing dwm to try to render them in the status
bar. This commit keeps dwm from displaying window titles in the status
bar.
dc.x = x;
if(m->sel) {
col = m == selmon ? dc.sel : dc.norm;
- drawtext(m->sel->name, col, False);
+ /* drawtext(m->sel->name, col, False); */
drawsquare(m->sel->isfixed, m->sel->isfloating, False, col);
}
else