t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 45d16d090b05ee988d2c669e43db1b8c67195809
   DIR parent 525c5ff4d8bd9fd4dd2077503b5f43487dda963d
   URI Author: arg@10ksloc.org <unknown>
       Date:   Mon,  7 Aug 2006 09:47:13 +0200
       
       status box should have a border in my eyes
       
       Diffstat:
         M config.arg.h                        |       2 +-
         M draw.c                              |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/config.arg.h b/config.arg.h
       t@@ -47,7 +47,7 @@ static Key key[] = { \
                { MODKEY|ShiftMask,        XK_c,                killclient,        { 0 } }, \
                { MODKEY|ShiftMask,        XK_q,                quit,                { 0 } }, \
                { MODKEY|ShiftMask,        XK_Return,        spawn, \
       -                { .cmd = "exec urxvt -bg '#ffffea' " \
       +                { .cmd = "exec urxvt -bg '#ffffea' +sb " \
                                "-fn '-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*'" } }, \
        };
        
   DIR diff --git a/draw.c b/draw.c
       t@@ -125,7 +125,7 @@ drawstatus()
                x = dc.x + dc.w;
                dc.w = textw(stext);
                dc.x = bx + bw - dc.w;
       -        drawtext(stext, !istile, False);
       +        drawtext(stext, !istile, True);
                if(sel && ((dc.w = dc.x - x) >= bh)) {
                        dc.x = x;
                        drawtext(sel->name, istile, True);