summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorLignum Crucis2026-04-11 22:55:53 -0300
committerLignum Crucis2026-04-11 22:55:53 -0300
commite36ab5e9effc0cc4eba99bebd5341028ab46046f (patch)
treee66220e98071e66d70ba7d88aff3d1f73bc6a2db /config.h
parentc800e7ec3c881c9d1c0cfdc283b084091cfb90d1 (diff)
binds: now just XK_Print runs sscmd
i'll bind MOD+p to something else i think, probably passmenu
Diffstat (limited to 'config.h')
-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} },