瀏覽代碼

added SHCMD support for pipe-based commands due the new spawn() versio

Anselm R Garbe 17 年之前
父節點
當前提交
e5a965a274
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      dwm.c

+ 1 - 0
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)