t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 1f9614f82e14fa3a46e0db05346b41d6be611f88
   DIR parent 4491bdda69f20d976bd61ba92b766dac56c07212
   URI Author: arg@10ksloc.org <unknown>
       Date:   Wed, 19 Jul 2006 14:43:17 +0200
       
       prepared 0.3
       
       Diffstat:
         M event.c                             |      11 +----------
       
       1 file changed, 1 insertion(+), 10 deletions(-)
       ---
   DIR diff --git a/event.c b/event.c
       t@@ -12,13 +12,7 @@
        #define MouseMask       (ButtonMask | PointerMotionMask)
        
        /* CUSTOMIZE */
       -const char *browse[] = { "firefox", NULL };
       -const char *gimp[] = { "gimp", NULL };
       -const char *term[] = { 
       -        "urxvtc", "-tr", "+sb", "-bg", "black", "-fg", "white", "-cr", "white",
       -        "-fn", "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*", NULL
       -};
       -const char *xlock[] = { "xlock", NULL };
       +const char *term[] = { "xterm", NULL };
        
        Key key[] = {
                /* modifier                                key                        function        arguments */
       t@@ -44,11 +38,8 @@ Key key[] = {
                { Mod1Mask|ShiftMask,        XK_2,                replacetag,                { .i = Twww } }, 
                { Mod1Mask|ShiftMask,        XK_3,                replacetag,                { .i = Twork } }, 
                { Mod1Mask|ShiftMask,        XK_c,                killclient,                { 0 } }, 
       -        { Mod1Mask|ShiftMask,        XK_g,                spawn,                { .argv = gimp } },
       -        { Mod1Mask|ShiftMask,        XK_l,                spawn,                { .argv = xlock } },
                { Mod1Mask|ShiftMask,        XK_q,                quit,                { 0 } },
                { Mod1Mask|ShiftMask,        XK_space,        dofloat,        { 0 } }, 
       -        { Mod1Mask|ShiftMask,        XK_w,                spawn,                { .argv = browse } },
                { Mod1Mask|ShiftMask,        XK_Return,        spawn,                { .argv = term } },
        };