mirror of
https://github.com/alrayyes/dwm
synced 2023-11-14 15:56:31 +00:00
74 lines
2.0 KiB
Diff
74 lines
2.0 KiB
Diff
diff -up a/dwm.c b/dwm.c
|
|
--- a/dwm.c
|
|
+++ b/dwm.c
|
|
@@ -822,10 +822,10 @@ dirtomon(int dir)
|
|
void
|
|
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 boxw = drw->fonts->h / 6 + 2;
|
|
- unsigned int i, occ = 0, urg = 0;
|
|
+ unsigned int i, occ = 0, urg = 0, n = 0;
|
|
char *ts = stext;
|
|
char *tp = stext;
|
|
int tx = 0;
|
|
@@ -854,6 +854,8 @@ drawbar(Monitor *m)
|
|
|
|
resizebarwin(m);
|
|
for (c = m->clients; c; c = c->next) {
|
|
+ if (ISVISIBLE(c))
|
|
+ n++;
|
|
occ |= c->tags == 255 ? 0 : c->tags;
|
|
if (c->isurgent)
|
|
urg |= c->tags;
|
|
@@ -872,15 +874,39 @@ drawbar(Monitor *m)
|
|
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
|
|
|
|
if ((w = m->ww - sw - stw - x) > bh) {
|
|
- if (m->sel) {
|
|
- drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
|
|
- drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
|
|
- if (m->sel->isfloating)
|
|
- drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
|
|
- } else {
|
|
- drw_setscheme(drw, scheme[SchemeNorm]);
|
|
- drw_rect(drw, x, 0, w, bh, 1, 1);
|
|
+ if (n > 0) {
|
|
+ tw = TEXTW(m->sel->name) + lrpad;
|
|
+ mw = (tw >= w || n == 1) ? 0 : (w - tw) / (n - 1);
|
|
+
|
|
+ i = 0;
|
|
+ for (c = m->clients; c; c = c->next) {
|
|
+ if (!ISVISIBLE(c) || c == m->sel)
|
|
+ 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);
|
|
}
|