Merge fancybar & solve conflict with systray
This commit is contained in:
commit
517c508916
1 changed files with 36 additions and 10 deletions
46
dwm.c
46
dwm.c
|
@ -782,10 +782,10 @@ dirtomon(int dir)
|
||||||
void
|
void
|
||||||
drawbar(Monitor *m)
|
drawbar(Monitor *m)
|
||||||
{
|
{
|
||||||
int x, w, sw = 0, stw = 0;
|
int x, w, sw = 0, stw = 0, tw, mw, ew = 0;
|
||||||
int boxs = drw->fonts->h / 9;
|
int boxs = drw->fonts->h / 9;
|
||||||
int boxw = drw->fonts->h / 6 + 2;
|
int boxw = drw->fonts->h / 6 + 2;
|
||||||
unsigned int i, occ = 0, urg = 0;
|
unsigned int i, occ = 0, urg = 0, n = 0;
|
||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
if(showsystray && m == systraytomon(m))
|
if(showsystray && m == systraytomon(m))
|
||||||
|
@ -800,6 +800,8 @@ drawbar(Monitor *m)
|
||||||
|
|
||||||
resizebarwin(m);
|
resizebarwin(m);
|
||||||
for (c = m->clients; c; c = c->next) {
|
for (c = m->clients; c; c = c->next) {
|
||||||
|
if (ISVISIBLE(c))
|
||||||
|
n++;
|
||||||
occ |= c->tags;
|
occ |= c->tags;
|
||||||
if (c->isurgent)
|
if (c->isurgent)
|
||||||
urg |= c->tags;
|
urg |= c->tags;
|
||||||
|
@ -820,15 +822,39 @@ drawbar(Monitor *m)
|
||||||
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
|
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
|
||||||
|
|
||||||
if ((w = m->ww - sw - stw - x) > bh) {
|
if ((w = m->ww - sw - stw - x) > bh) {
|
||||||
if (m->sel) {
|
if (n > 0) {
|
||||||
drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
|
tw = TEXTW(m->sel->name);
|
||||||
drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
|
mw = (tw >= w || n == 1) ? 0 : (w - tw) / (n - 1);
|
||||||
if (m->sel->isfloating)
|
|
||||||
drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
|
i = 0;
|
||||||
} else {
|
for (c = m->clients; c; c = c->next) {
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
if (!ISVISIBLE(c) || c == m->sel)
|
||||||
drw_rect(drw, x, 0, w, bh, 1, 1);
|
continue;
|
||||||
|
tw = TEXTW(c->name);
|
||||||
|
if(tw < mw)
|
||||||
|
ew += (mw - tw);
|
||||||
|
else
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
if (i > 0)
|
||||||
|
mw += ew / i;
|
||||||
|
|
||||||
|
for (c = m->clients; c; c = c->next) {
|
||||||
|
if (!ISVISIBLE(c))
|
||||||
|
continue;
|
||||||
|
tw = MIN(m->sel == c ? w : mw, TEXTW(c->name));
|
||||||
|
|
||||||
|
drw_setscheme(drw, scheme[m->sel == c ? SchemeSel : SchemeNorm]);
|
||||||
|
if (tw > 0) /* trap special handling of 0 in drw_text */
|
||||||
|
drw_text(drw, x, 0, tw, bh, lrpad / 2, c->name, 0);
|
||||||
|
if (c->isfloating)
|
||||||
|
drw_rect(drw, x + boxs, boxs, boxw, boxw, c->isfixed, 0);
|
||||||
|
x += tw;
|
||||||
|
w -= tw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
drw_setscheme(drw, scheme[SchemeNorm]);
|
||||||
|
drw_rect(drw, x, 0, w, bh, 1, 1);
|
||||||
}
|
}
|
||||||
drw_map(drw, m->barwin, 0, 0, m->ww - stw, bh);
|
drw_map(drw, m->barwin, 0, 0, m->ww - stw, bh);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue