Compare commits

..

No commits in common. "570154300cd96e01dd28152c397b323b11cc7d3c" and "ac89982df6020f5410b0818097d0ec4ad2b1e311" have entirely different histories.

2 changed files with 0 additions and 4 deletions

1
drw.c
View File

@ -95,7 +95,6 @@ drw_free(Drw *drw)
{
XFreePixmap(drw->dpy, drw->drawable);
XFreeGC(drw->dpy, drw->gc);
drw_fontset_free(drw->fonts);
free(drw);
}

3
dwm.c
View File

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