X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=config.def.h;h=215d6af8c82a64c3a212971afd7864c3987cf2e5;hb=016dca4f694cb51c7db77aeeefcb55b8869f3842;hp=6a6f7be87330537c83c6886a0581c7f5bc39d03a;hpb=c56533615f84df801f10dedc4d6ff267e0e8df0a;p=dwm.git 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}} },