1
0
mirror of https://github.com/tiyn/dwm.git synced 2025-04-19 15:57:45 +02:00

added classic alt-tabbing

This commit is contained in:
tiyn 2023-10-24 06:02:58 +02:00
parent 1a7568c158
commit 0035d03900
2 changed files with 2 additions and 3 deletions

View File

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

View File

@ -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)