t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 59107755c8ba155501662f3230b1e5725f282c37
   DIR parent d05d09b205e1f1b045cf8da7f0b83a2bee100be6
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Wed, 12 Mar 2008 16:04:06 +0000
       
       some polishing
       Diffstat:
         M dwm.c                               |      24 +++++-------------------
       
       1 file changed, 5 insertions(+), 19 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1452,33 +1452,19 @@ setup(void) {
                lt = &layouts[0];
        
                /* bar position */
       -        bx = BX;
       -        by = BY;
       -        bw = BW;
       +        bx = BX; by = BY; bw = BW;
        
                /* window area */
       -        wx = WX;
       -        wy = WY;
       -        ww = WW;
       -        wh = WH;
       +        wx = WX; wy = WY; ww = WW; wh = WH;
        
                /* master area */
       -        mx = MX;
       -        my = MY;
       -        mw = MW;
       -        mh = MH;
       +        mx = MX; my = MY; mw = MW; mh = MH;
        
                /* tile area */
       -        tx = TX;
       -        ty = TY;
       -        tw = TW;
       -        th = TH;
       +        tx = TX; ty = TY; tw = TW; th = TH;
        
                /* monocle area */
       -        mox = MOX;
       -        moy = MOY;
       -        mow = MOW;
       -        moh = MOH;
       +        mox = MOX; moy = MOY; mow = MOW; moh = MOH;
        
                /* init bar */
                for(blw = i = 0; i < LENGTH(layouts); i++) {