added SHCMD support for pipe-based commands due the new spawn() versio
Anselm R Garbe garbeam@gmail.com
Wed, 11 Jun 2008 13:20:17 +0100
1 files changed,
1 insertions(+),
0 deletions(-)
jump to
M
dwm.c
→
dwm.c
@@ -51,6 +51,7 @@ #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
#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)