diff --git a/README.md b/README.md index fa5f6fa..a8bd1b0 100644 --- a/README.md +++ b/README.md @@ -61,3 +61,4 @@ build are the following. | Super | Shift | 1/2/.../9/0 | Add current window to tag 1/2/.../9/0 | | Super | Shift | . | Add to monitor lower in stack | | Super | Shift | , | Add to monitor higher in stack | +| Alt | | Tab | (Tiling/Deck) Focus window lower in stack than current | diff --git a/config.def.h b/config.def.h index 77019cf..ff4d9f6 100644 --- a/config.def.h +++ b/config.def.h @@ -105,9 +105,7 @@ static Key keys[] = { { MODKEY, XK_period, focusmon, {.i = +1} }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1} }, { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1} }, - //{ MODKEY|ShiftMask, XK_o, incnmaster, {.i = +1} }, - //{ MODKEY|ShiftMask, XK_z, incnmaster, {.i = -1} }, - //{ MODKEY, XK_space, setlayout, {0} }, + { Mod1Mask, XK_Tab, focusstack, {.i = +1} }, TAGKEYS(XK_1, 0) TAGKEYS(XK_2, 1)