aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-06-11 14:20:17 +0200
committerAnselm R Garbe <garbeam@gmail.com>2008-06-11 14:20:17 +0200
commite5a965a27480c8b27cfb4884cc8f4988924d1087 (patch)
tree53145d91bc7b498f4bbb9c7a2e07ed838c0641ea
parent5d422bb1ce9c8b1919809f14746ad80d0442bbbb (diff)
downloaddwm-e5a965a27480c8b27cfb4884cc8f4988924d1087.tar.zst
added SHCMD support for pipe-based commands due the new spawn() versio
-rw-r--r--dwm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dwm.c b/dwm.c
index 04ae223..7a6c591 100644
--- a/dwm.c
+++ b/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)