Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
5d422bb
)
added SHCMD support for pipe-based commands due the new spawn() versio
author
Anselm R Garbe <
[email protected]
>
Wed, 11 Jun 2008 12:20:17 +0000
(13:20 +0100)
committer
Anselm R Garbe <
[email protected]
>
Wed, 11 Jun 2008 12:20:17 +0000
(13:20 +0100)
dwm.c
diff
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
04ae223
..
7a6c591
100644
(file)
--- 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)