summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.h b/config.h
index 82eb33d..8ec6018 100644
--- a/config.h
+++ b/config.h
@@ -63,6 +63,7 @@ static const Layout layouts[] = {
/* key definitions */
#define MODKEY Mod4Mask
+#define NOMOD 0
#define TAGKEYS(KEY,TAG) \
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
@@ -82,7 +83,7 @@ static const char *sscmd[] = { "scr", NULL };
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_r, spawn, {.v = dmenucmd } },
- { MODKEY, XK_p, spawn, {.v = sscmd } },
+ { NOMOD, XK_Print, spawn, {.v = sscmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, spawn, {.v = browsercmd } },
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },