t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 75690c808dbf31d459d6e53ecc4c8b1542ed39fe
   DIR parent fde58d5e637d700981eaed69d172d3dbfcaee215
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Thu, 29 May 2008 18:42:53 +0100
       
       applied nibbles fixes, slightly modified
       Diffstat:
         M dwm.c                               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -267,7 +267,7 @@ arrange(void) {
                                        XMoveResizeWindow(dpy, c->win, wx, wy, ww - 2 * c->bw, wh - 2 * c->bw);
                                        c->ismoved = True;
                                }
       -                        else if(!lt->arrange || c->isfloating)
       +                        else if(!lt->arrange || ismax || c->isfloating)
                                        resize(c, c->x, c->y, c->w, c->h, True);
                                c->isbanned = False;
                        }
       t@@ -1719,7 +1719,7 @@ void
        zoom(const void *arg) {
                Client *c = sel;
        
       -        if(!lt->arrange || sel->isfloating)
       +        if(ismax || !lt->arrange || (sel && sel->isfloating))
                        return;
                if(c == nexttiled(clients))
                        if(!c || !(c = nexttiled(c->next)))