fix draw bar

This commit is contained in:
JuliusHerrmann 2022-02-16 00:05:37 +01:00
parent 5b9f99d846
commit 570154300c

3
dwm.c
View File

@ -878,6 +878,9 @@ drawbar(Monitor *m)
unsigned int i, occ = 0, urg = 0; unsigned int i, occ = 0, urg = 0;
Client *c; Client *c;
if (!m->showbar)
return;
if(showsystray && m == systraytomon(m)) if(showsystray && m == systraytomon(m))
stw = getsystraywidth(); stw = getsystraywidth();