t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d662f98d89d3e813344e9bdb64e5704caf3b9dc2
   DIR parent e5a965a27480c8b27cfb4884cc8f4988924d1087
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Wed, 11 Jun 2008 14:10:18 +0100
       
       added nsz' patch
       Diffstat:
         M config.def.h                        |       3 +++
         M dwm.c                               |       1 -
       
       2 files changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/config.def.h b/config.def.h
       t@@ -40,6 +40,9 @@ static Layout layouts[] = {
                { MODKEY|ShiftMask,             KEY,      tag,            TAG }, \
                { MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      TAG },
        
       +/* helper for spawning shell commands */
       +#define SHCMD(cmd) { .v = (char*[]){ "/bin/sh", "-c", cmd, NULL } }
       +
        static Key keys[] = {
                /* modifier                     key        function        argument */
                { MODKEY,                       XK_p,      spawn,          {.v = (char *[]){"dmenu_run", "-fn", FONT, "-nb", NORMBGCOLOR, "-nf", NORMFGCOLOR, "-sb", SELBGCOLOR, "-sf", SELFGCOLOR, NULL}} },
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -51,7 +51,6 @@
        #define LENGTH(x)       (sizeof x / sizeof x[0])
        #define MAXTAGLEN       16
        #define MOUSEMASK       (BUTTONMASK|PointerMotionMask)
       -#define SHCMD(cmd)      { .v = (char*[]){ "/bin/sh", "-c", cmd, NULL } }
        #define TAGMASK         ((int)((1LL << LENGTH(tags)) - 1))
        #define TEXTW(x)        (textnw(x, strlen(x)) + dc.font.height)