correct key constant name

Fixes #94.
This commit is contained in:
Devin J. Pohly 2021-03-03 11:29:53 -06:00
parent fd498e1910
commit 15f5d31f98
1 changed files with 1 additions and 1 deletions

View File

@ -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} },