-
- for(c = clients; c; c = getnext(c->next))
- drawtitle(c);
- drawstatus();
-}
-
-void
-drawstatus()
-{
- int i;
- Bool istile = arrange == dotile;
-
- dc.x = dc.y = 0;
- dc.w = bw;
- drawtext(NULL, !istile, False);
-
- dc.w = 0;
- for(i = 0; i < TLast; i++) {
- dc.x += dc.w;
- dc.w = textw(tags[i]);
- if(istile)
- drawtext(tags[i], (i == tsel), True);
- else
- drawtext(tags[i], (i != tsel), True);
- }
- if(sel) {
- dc.x += dc.w;
- dc.w = textw(sel->name);
- drawtext(sel->name, istile, True);
- }
- dc.w = textw(stext);
- dc.x = bx + bw - dc.w;
- drawtext(stext, !istile, False);
-
- XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
- XFlush(dpy);