+ brush.w = 0;
+ for(i = 0; i < TLast; i++) {
+ brush.x += brush.w;
+ brush.w = textw(&brush.font, tags[i]) + bh;
+ if(i == tsel) {
+ swap((void **)&brush.fg, (void **)&brush.bg);
+ draw(dpy, &brush, True, tags[i]);
+ swap((void **)&brush.fg, (void **)&brush.bg);
+ }
+ else
+ draw(dpy, &brush, True, tags[i]);
+ }