aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorDevin J. Pohly <djpohly@gmail.com>2021-03-03 11:29:53 -0600
committerDevin J. Pohly <djpohly@gmail.com>2021-03-03 11:29:53 -0600
commit15f5d31f98565ef740c0aa70b01765c2e564501c (patch)
treee220c56378226bf6116c6176dbc2dd5dbffa34a2 /config.def.h
parentfd498e1910d51def032d2b68f52cd89db7ba15f6 (diff)
correct key constant name
Fixes #94.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h
index 9384ef6..089aa37 100644
--- a/config.def.h
+++ b/config.def.h
@@ -68,7 +68,7 @@ static const char *menucmd[] = { "bemenu-run", NULL };
static const Key keys[] = {
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */
/* modifier key function argument */
- { MODKEY, XKB_p, spawn, {.v = menucmd} },
+ { MODKEY, XKB_KEY_p, spawn, {.v = menucmd} },
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
{ MODKEY, XKB_KEY_j, focusstack, {.i = +1} },
{ MODKEY, XKB_KEY_k, focusstack, {.i = -1} },