aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-06-11 14:10:18 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-06-11 14:10:18 +0100
commitd662f98d89d3e813344e9bdb64e5704caf3b9dc2 (patch)
treee747b9ea891fa64b1085c96ab8b18b0710aa255a /config.def.h
parente5a965a27480c8b27cfb4884cc8f4988924d1087 (diff)
added nsz' patch
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index 6a6f7be..215d6af 100644
--- a/config.def.h
+++ b/config.def.h
@@ -40,6 +40,9 @@ static Layout layouts[] = {
{ MODKEY|ShiftMask, KEY, tag, TAG }, \
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, TAG },
+/* helper for spawning shell commands */
+#define SHCMD(cmd) { .v = (char*[]){ "/bin/sh", "-c", cmd, NULL } }
+
static Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_p, spawn, {.v = (char *[]){"dmenu_run", "-fn", FONT, "-nb", NORMBGCOLOR, "-nf", NORMFGCOLOR, "-sb", SELBGCOLOR, "-sf", SELFGCOLOR, NULL}} },