Added patch dwm-inplacerotate

This commit is contained in:
2024-04-23 15:12:58 +05:30
parent 323ea47a96
commit 0d4564c840
4 changed files with 175 additions and 0 deletions

View File

@@ -86,6 +86,10 @@ static Key keys[] = {
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY|ShiftMask, XK_j, inplacerotate, {.i = +1} },
{ MODKEY|ShiftMask, XK_k, inplacerotate, {.i = -1} },
{ MODKEY|ShiftMask, XK_h, inplacerotate, {.i = +2} },
{ MODKEY|ShiftMask, XK_l, inplacerotate, {.i = -2} },
{ MODKEY, XK_i, incnmaster, {.i = +1 } },
{ MODKEY, XK_d, incnmaster, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },