commit e5a965a27480c8b27cfb4884cc8f4988924d1087 from: Anselm R Garbe date: Wed Jun 11 12:20:17 2008 UTC added SHCMD support for pipe-based commands due the new spawn() versio commit - 5d422bb1ce9c8b1919809f14746ad80d0442bbbb commit + e5a965a27480c8b27cfb4884cc8f4988924d1087 blob - 04ae223b9375edaf231918f3098157f06f1b96c0 blob + 7a6c591e2e3347a66e13d52975343ab822e1ccb6 --- dwm.c +++ dwm.c @@ -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)