Created
July 10, 2011 21:49
-
-
Save keks/1075006 to your computer and use it in GitHub Desktop.
make dwm title bar normal bg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void | |
drawbar(Monitor *m) { | |
int x; | |
unsigned int i, occ = 0, urg = 0; | |
unsigned long *col; | |
Client *c; | |
for(c = m->clients; c; c = c->next) { | |
occ |= c->tags; | |
if(c->isurgent) | |
urg |= c->tags; | |
} | |
dc.x = 0; | |
for(i = 0; i < LENGTH(tags); i++) { | |
dc.w = TEXTW(tags[i]); | |
col = m->tagset[m->seltags] & 1 << i ? dc.sel : dc.norm; | |
drawtext(tags[i], col, urg & 1 << i); | |
drawsquare(m == selmon && selmon->sel && selmon->sel->tags & 1 << i, | |
occ & 1 << i, urg & 1 << i, col); | |
dc.x += dc.w; | |
} | |
dc.w = blw = TEXTW(m->ltsymbol); | |
drawtext(m->ltsymbol, dc.norm, False); | |
dc.x += dc.w; | |
x = dc.x; | |
if(m == selmon) { /* status is only drawn on selected monitor */ | |
dc.w = TEXTW(stext); | |
dc.x = m->ww - dc.w; | |
if(dc.x < x) { | |
dc.x = x; | |
dc.w = m->ww - x; | |
} | |
drawtext(stext, dc.norm, False); | |
} | |
else | |
dc.x = m->ww; | |
if((dc.w = dc.x - x) > bh) { | |
dc.x = x; | |
if(m->sel) { | |
col = dc.norm; | |
drawtext(m->sel->name, col, False); | |
drawsquare(m->sel->isfixed, m->sel->isfloating, False, col); | |
} | |
else | |
drawtext(NULL, dc.norm, False); | |
} | |
XCopyArea(dpy, dc.drawable, m->barwin, dc.gc, 0, 0, m->ww, bh, 0, 0); | |
XSync(dpy, False); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment