small fix
This commit is contained in:
parent
c7c91b2e86
commit
ffc2e2e241
1 changed files with 3 additions and 3 deletions
6
config.h
6
config.h
|
@ -188,7 +188,7 @@ static const char *sysucmd[] = { "sysutils", NULL };
|
|||
static const char *emomcmd[] = { "emojimenu", NULL };
|
||||
|
||||
static const Key keys[] = {
|
||||
/* Note that Shift changes certain key codes: c -> C, 2 -> at, etc. */
|
||||
|
||||
/* modifier key function argument */
|
||||
{ MODKEY, XKB_KEY_r, spawn, {.v = menucmd} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_Return, spawn, {.v = termcmd} },
|
||||
|
@ -220,8 +220,8 @@ static const Key keys[] = {
|
|||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_i, incnmaster, {.i = -1} },
|
||||
{ MODKEY, XKB_KEY_a, rotatetags, {.i = VIEW_L} },
|
||||
{ MODKEY, XKB_KEY_d, rotatetags, {.i = VIEW_R} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_a, rotatetags, {.i = SHIFT_L} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_d, rotatetags, {.i = SHIFT_R} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_A, rotatetags, {.i = SHIFT_L} },
|
||||
{ MODKEY|WLR_MODIFIER_SHIFT, XKB_KEY_D, rotatetags, {.i = SHIFT_R} },
|
||||
{ MODKEY, XKB_KEY_z, setmfact, {.f = -0.05f} },
|
||||
{ MODKEY, XKB_KEY_x, setmfact, {.f = +0.05f} },
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue