t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit e5a965a27480c8b27cfb4884cc8f4988924d1087
   DIR parent 5d422bb1ce9c8b1919809f14746ad80d0442bbbb
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Wed, 11 Jun 2008 13:20:17 +0100
       
       added SHCMD support for pipe-based commands due the new spawn() versio
       Diffstat:
         M dwm.c                               |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -51,6 +51,7 @@
        #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)