ev'ning everyone,

I thought about updating my current dwm installation(5.2)
for some time. Well, now I had some spare time left
and updated my old monocle_count-patch to 5.8.2 - 
if anyone is interested: it prints the total number of
clients and the number of the currently activated client
besides the symbol of the monocle layout, while the current release
prints only the number of total clients within the symbol.

Also I tweaked the patches of bstack, fibonacci and gridmode
to apply clean if applied incrementally. So the following does
work without rejections now:

dwm-5.8.2 $ cat ../dwm-5.8.2-bstack.diff \
                ../dwm-5.8.2-fibonacci.diff \
                ../dwm-5.8.2-gridmode.diff \
                ../dwm-5.8.2-monocle_count.diff \
                ../dwm-5.8.2-pertag_without_bar.diff | patch -p1

Last but not least in my current setup I see no point of
one showbar flag for each tag, while I really like pertag.
So I hacked pertag, to keep one boolean showbar,
while layout and mfact are stored per tag.


All patched are attached, have fun :)


v4hn
diff -NU5 -r dwm-5.8.2/bstack.c dwm-5.8.2-bstack/bstack.c
--- dwm-5.8.2/bstack.c  1970-01-01 01:00:00.000000000 +0100
+++ dwm-5.8.2-bstack/bstack.c   2010-06-15 17:47:44.000000000 +0200
@@ -0,0 +1,29 @@
+static void
+bstack(Monitor *m) {
+       int x, y, h, w, mh;
+       unsigned int i, n;
+       Client *c;
+
+       for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
+       if(n == 0)
+               return;
+       /* master */
+       c = nexttiled(m->clients);
+       mh = m->mfact * m->wh;
+       resize(c, m->wx, m->wy, m->ww - 2 * c->bw, (n == 1 ? m->wh : mh) - 2 * 
c->bw, False);
+       if(--n == 0)
+               return;
+       /* tile stack */
+       x = m->wx;
+       y = (m->wy + mh > c->y + c->h) ? c->y + c->h + 2 * c->bw : m->wy + mh;
+       w = m->ww / n;
+       h = (m->wy + mh > c->y + c->h) ? m->wy + m->wh - y : m->wh - mh;
+       if(w < bh)
+               w = m->ww;
+       for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
+               resize(c, x, y, /* remainder */ ((i + 1 == n)
+                      ? m->wx + m->ww - x - 2 * c->bw : w - 2 * c->bw), h - 2 
* c->bw, False);
+               if(w != m->ww)
+                       x = c->x + WIDTH(c);
+       }
+}
diff -NU5 -r dwm-5.8.2/bstackhoriz.c dwm-5.8.2-bstack/bstackhoriz.c
--- dwm-5.8.2/bstackhoriz.c     1970-01-01 01:00:00.000000000 +0100
+++ dwm-5.8.2-bstack/bstackhoriz.c      2010-06-15 17:47:44.000000000 +0200
@@ -0,0 +1,30 @@
+static void
+bstackhoriz(Monitor *m) {
+       int x, y, h, w, mh;
+       unsigned int i, n;
+       Client *c;
+
+       for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
+       if(n == 0)
+               return;
+       /* master */
+       c = nexttiled(m->clients);
+       mh = m->mfact * m->wh;
+       resize(c, m->wx, m->wy, m->ww - 2 * c->bw, (n == 1 ? m->wh : mh) - 2 * 
c->bw, False);
+       if(--n == 0)
+               return;
+       /* tile stack */
+       x = m->wx;
+       y = (m->wy + mh > c->y + c->h) ? c->y + c->h + 2 * c->bw : m->wy + mh;
+       w = m->ww;
+       h = (m->wy + mh > c->y + c->h) ? m->wy + m->wh - y : m->wh - mh;
+       h /= n;
+       if(h < bh)
+               h = m->wh;
+       for(i = 0, c = nexttiled(c->next); c; c = nexttiled(c->next), i++) {
+               resize(c, x, y, w - 2 * c->bw, /* remainder */ ((i + 1 == n)
+                      ? m->wy + m->wh - y - 2 * c->bw : h - 2 * c->bw), False);
+               if(h != m->wh)
+                       y = c->y + HEIGHT(c);
+       }
+}
diff -NU5 -r dwm-5.8.2/config.def.h dwm-5.8.2-bstack/config.def.h
--- dwm-5.8.2/config.def.h      2010-06-04 12:39:15.000000000 +0200
+++ dwm-5.8.2-bstack/config.def.h       2010-06-15 17:47:44.000000000 +0200
@@ -29,1 +29,3 @@
+#include "bstack.c"
+#include "bstackhoriz.c"
 static const Layout layouts[] = {
@@ -34,5 +36,7 @@
+       { "TTT",      bstack },
+       { "===",      bstackhoriz },
 };
 
 /* key definitions */
 #define MODKEY Mod1Mask
 #define TAGKEYS(KEY,TAG) \
diff --git a/config.def.h b/config.def.h
index cca37df..91b91aa 100644
--- a/config.def.h
+++ b/config.def.h
@@ -29,1 +29,2 @@
+#include "fibonacci.c"
 static const Layout layouts[] = {
@@ -34,3 +35,5 @@
+       { "[...@]",      spiral },
+       { "[\\]",      dwindle },
 };
 
 /* key definitions */
diff --git a/fibonacci.c b/fibonacci.c
new file mode 100644
index 0000000..fce0a57
--- /dev/null
+++ b/fibonacci.c
@@ -0,0 +1,66 @@
+void
+fibonacci(Monitor *mon, int s) {
+       unsigned int i, n, nx, ny, nw, nh;
+       Client *c;
+
+       for(n = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next), n++);
+       if(n == 0)
+               return;
+       
+       nx = mon->wx;
+       ny = 0;
+       nw = mon->ww;
+       nh = mon->wh;
+       
+       for(i = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next)) {
+               if((i % 2 && nh / 2 > 2 * c->bw)
+                  || (!(i % 2) && nw / 2 > 2 * c->bw)) {
+                       if(i < n - 1) {
+                               if(i % 2)
+                                       nh /= 2;
+                               else
+                                       nw /= 2;
+                               if((i % 4) == 2 && !s)
+                                       nx += nw;
+                               else if((i % 4) == 3 && !s)
+                                       ny += nh;
+                       }
+                       if((i % 4) == 0) {
+                               if(s)
+                                       ny += nh;
+                               else
+                                       ny -= nh;
+                       }
+                       else if((i % 4) == 1)
+                               nx += nw;
+                       else if((i % 4) == 2)
+                               ny += nh;
+                       else if((i % 4) == 3) {
+                               if(s)
+                                       nx += nw;
+                               else
+                                       nx -= nw;
+                       }
+                       if(i == 0)
+                       {
+                               if(n != 1)
+                                       nw = mon->ww * mon->mfact;
+                               ny = mon->wy;
+                       }
+                       else if(i == 1)
+                               nw = mon->ww - nw;
+                       i++;
+               }
+               resize(c, nx, ny, nw - 2 * c->bw, nh - 2 * c->bw, False);
+       }
+}
+
+void
+dwindle(Monitor *mon) {
+       fibonacci(mon, 1);
+}
+
+void
+spiral(Monitor *mon) {
+       fibonacci(mon, 0);
+}
diff -r 62791cc97f88 config.def.h
--- a/config.def.h      Tue Jun 01 17:39:26 2010 +0100
+++ b/config.def.h      Wed Jun 02 13:42:49 2010 +0100
@@ -29,1 +29,2 @@
+#include "grid.c"
 static const Layout layouts[] = {
@@ -34,3 +35,4 @@
+       { "HHH",      grid },
 };
 
 /* key definitions */
diff -r 62791cc97f88 grid.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/grid.c    Wed Jun 02 13:42:49 2010 +0100
@@ -0,0 +1,28 @@
+void
+grid(Monitor *m) {
+       unsigned int i, n, cx, cy, cw, ch, aw, ah, cols, rows;
+       Client *c;
+
+       for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next))
+               n++;
+
+       /* grid dimensions */
+       for(rows = 0; rows <= n/2; rows++)
+               if(rows*rows >= n)
+                       break;
+       cols = (rows && (rows - 1) * rows >= n) ? rows - 1 : rows;
+
+       /* window geoms (cell height/width) */
+       ch = m->wh / (rows ? rows : 1);
+       cw = m->ww / (cols ? cols : 1);
+       for(i = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next)) {
+               cx = m->wx + (i / rows) * cw;
+               cy = m->wy + (i % rows) * ch;
+               /* adjust height/width of last row/column's windows */
+               ah = ((i + 1) % rows == 0) ? m->wh - ch * rows : 0;
+               aw = (i >= rows * (cols - 1)) ? m->ww - cw * cols : 0;
+               resize(c, cx, cy, cw - 2 * c->bw + aw, ch - 2 * c->bw + ah, 
False);
+               i++;
+       }
+}
+
diff -r -U5 dwm-5.8.2/dwm.c dwm-5.8.2_monocle_count/dwm.c
--- dwm-5.8.2/dwm.c     2010-06-04 12:39:15.000000000 +0200
+++ dwm-5.8.2_monocle_count/dwm.c       2010-06-15 15:52:51.000000000 +0200
@@ -684,10 +684,12 @@
 void
 drawbar(Monitor *m) {
        int x;
        unsigned int i, occ = 0, urg = 0;
        unsigned long *col;
+       unsigned int a= 0, s= 0;
+       char posbuf[10];
        Client *c;
 
        for(c = m->clients; c; c = c->next) {
                occ |= c->tags;
                if(c->isurgent)
@@ -704,10 +706,22 @@
        }
        dc.w = blw = TEXTW(m->ltsymbol);
        drawtext(m->ltsymbol, dc.norm, False);
        dc.x += dc.w;
        x = dc.x;
+       if(m->lt[m->sellt]->arrange == monocle){
+               for(c= nexttiled(m->clients), a= 0, s= 0; c; c= 
nexttiled(c->next), a++)
+                       if(c == m->stack)
+                               s= a;
+               if(!s && a)
+                       s= a;
+               snprintf(posbuf, LENGTH(posbuf), "[%d/%d]", s, a);
+               dc.w= TEXTW(posbuf);
+               drawtext(posbuf, dc.norm, False);
+               x= dc.x + dc.w;
+       }
+       
        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;
@@ -1184,12 +1198,10 @@
        Client *c;
 
        for(c = m->clients; c; c = c->next)
                if(ISVISIBLE(c))
                        n++;
-       if(n > 0) /* override layout symbol */
-               snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
        for(c = nexttiled(m->clients); c; c = nexttiled(c->next))
                resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 
False);
 }
 
 void
diff -NU5 -r dwm-5.8.2/dwm.c dwm-5.8.2-pertag/dwm.c
--- dwm-5.8.2/dwm.c     2010-06-04 12:39:15.000000000 +0200
+++ dwm-5.8.2-pertag/dwm.c      2010-06-15 17:59:56.000000000 +0200
@@ -120,30 +120,10 @@
 typedef struct {
        const char *symbol;
        void (*arrange)(Monitor *);
 } Layout;
 
-struct Monitor {
-       char ltsymbol[16];
-       float mfact;
-       int num;
-       int by;               /* bar geometry */
-       int mx, my, mw, mh;   /* screen size */
-       int wx, wy, ww, wh;   /* window area  */
-       unsigned int seltags;
-       unsigned int sellt;
-       unsigned int tagset[2];
-       Bool showbar;
-       Bool topbar;
-       Client *clients;
-       Client *sel;
-       Client *stack;
-       Monitor *next;
-       Window barwin;
-       const Layout *lt[2];
-};
-
 typedef struct {
        const char *class;
        const char *instance;
        const char *title;
        unsigned int tags;
@@ -276,10 +256,34 @@
 static Window root;
 
 /* configuration, allows nested code to access above variables */
 #include "config.h"
 
+struct Monitor {
+       char ltsymbol[16];
+       float mfact;
+       int num;
+       int by;               /* bar geometry */
+       int mx, my, mw, mh;   /* screen size */
+       int wx, wy, ww, wh;   /* window area  */
+       unsigned int seltags;
+       unsigned int sellt;
+       unsigned int tagset[2];
+       Bool showbar;
+       Bool topbar;
+       Client *clients;
+       Client *sel;
+       Client *stack;
+       Monitor *next;
+       Window barwin;
+       const Layout *lt[2];
+       int curtag;
+       int prevtag;
+       const Layout *lts[LENGTH(tags) + 1];
+       double mfacts[LENGTH(tags) + 1];
+};
+
 /* compile-time check if all tags fit into an unsigned int bit array. */
 struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
 
 /* function implementations */
 void
@@ -1492,11 +1496,11 @@
 void
 setlayout(const Arg *arg) {
        if(!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
                selmon->sellt ^= 1;
        if(arg && arg->v)
-               selmon->lt[selmon->sellt] = (Layout *)arg->v;
+               selmon->lt[selmon->sellt] = selmon->lts[selmon->curtag] = 
(Layout *)arg->v;
        strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof 
selmon->ltsymbol);
        if(selmon->sel)
                arrange(selmon);
        else
                drawbar(selmon);
@@ -1510,17 +1514,19 @@
        if(!arg || !selmon->lt[selmon->sellt]->arrange)
                return;
        f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
        if(f < 0.1 || f > 0.9)
                return;
-       selmon->mfact = f;
+       selmon->mfact = selmon->mfacts[selmon->curtag] = f;
        arrange(selmon);
 }
 
 void
 setup(void) {
        XSetWindowAttributes wa;
+       Monitor *m;
+       unsigned int i;
 
        /* clean up any zombies immediately */
        sigchld(0);
 
        /* init screen */
@@ -1553,11 +1559,25 @@
        dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, 
DefaultDepth(dpy, screen));
        dc.gc = XCreateGC(dpy, root, 0, NULL);
        XSetLineAttributes(dpy, dc.gc, 1, LineSolid, CapButt, JoinMiter);
        if(!dc.font.set)
                XSetFont(dpy, dc.gc, dc.font.xfont->fid);
-       /* init bars */
+       /* init tags */
+       for(m = mons; m; m = m->next)
+               m->curtag = m->prevtag = 1;
+       /* init mfacts */
+       for(m = mons; m; m = m->next) {
+               for(i=0; i < LENGTH(tags) + 1 ; i++) {
+                       m->mfacts[i] = m->mfact;
+               }
+       }
+       /* init layouts */
+       for(m = mons; m; m = m->next) {
+               for(i=0; i < LENGTH(tags) + 1; i++) {
+                       m->lts[i] = &layouts[0];
+               }
+       }
        updatebars();
        updatestatus();
        /* EWMH support per view */
        XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
                        PropModeReplace, (unsigned char *) netatom, NetLast);
@@ -1684,16 +1704,29 @@
 }
 
 void
 toggletag(const Arg *arg) {
        unsigned int newtags;
+       unsigned int i;
 
        if(!selmon->sel)
                return;
        newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
        if(newtags) {
                selmon->sel->tags = newtags;
+               if(newtags == ~0) {
+                       selmon->prevtag = selmon->curtag;
+                       selmon->curtag = 0;
+               }
+               if(!(newtags & 1 << (selmon->curtag - 1))) {
+                       selmon->prevtag = selmon->curtag;
+                       for (i=0; !(newtags & 1 << i); i++);
+                       selmon->curtag = i + 1;
+               }
+               selmon->sel->tags = newtags;
+               selmon->lt[selmon->sellt] = selmon->lts[selmon->curtag];
+               selmon->mfact = selmon->mfacts[selmon->curtag];
                arrange(selmon);
        }
 }
 
 void
@@ -1957,15 +1990,31 @@
        }
 }
 
 void
 view(const Arg *arg) {
+       unsigned int i;
+
        if((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
                return;
        selmon->seltags ^= 1; /* toggle sel tagset */
-       if(arg->ui & TAGMASK)
+       if(arg->ui & TAGMASK) {
                selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
+               selmon->prevtag = selmon->curtag;
+               if(arg->ui == ~0)
+                       selmon->curtag = 0;
+               else {
+                       for (i=0; !(arg->ui & 1 << i); i++);
+                       selmon->curtag = i + 1;
+               }
+       } else {
+               selmon->prevtag= selmon->curtag ^ selmon->prevtag;
+               selmon->curtag^= selmon->prevtag;
+               selmon->prevtag= selmon->curtag ^ selmon->prevtag;
+       }
+       selmon->lt[selmon->sellt]= selmon->lts[selmon->curtag];
+       selmon->mfact = selmon->mfacts[selmon->curtag];
        arrange(selmon);
 }
 
 Client *
 wintoclient(Window w) {

Attachment: pgpybvkEJkjuz.pgp
Description: PGP signature

Reply via email to