X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=draw.c;h=fe2951ce5e9c66f5e6869531858b876c02cf849f;hb=3b18f17d4d4f2d7502f52346cbd158b7120fd835;hp=19604f35e39dc4c8b5c56925470668d5118ef6d5;hpb=0045ad87dfb32f35fc17b5b8942049cfe84d623c;p=dwm.git diff --git a/draw.c b/draw.c index 19604f3..fe2951c 100644 --- a/draw.c +++ b/draw.c @@ -97,15 +97,6 @@ drawtext(const char *text, unsigned long col[ColLast], Bool filledsquare, Bool e /* extern */ -void -drawall(void) { - Client *c; - - for(c = clients; c; c = getnext(c->next)) - drawclient(c); - drawstatus(); -} - void drawstatus(void) { int i, x; @@ -137,17 +128,6 @@ drawstatus(void) { XSync(dpy, False); } -void -drawclient(Client *c) { - if(c == sel && issel) { - drawstatus(); - XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); - return; - } - XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]); - XSync(dpy, False); -} - unsigned long getcolor(const char *colstr) { Colormap cmap = DefaultColormap(dpy, screen);