dwm: Toggle floating with super+v

This replicates the keybind I use in Hyprland.
This commit is contained in:
Donovan Glover 2024-08-25 13:10:05 -04:00
parent 3ed9ddddff
commit 6c561ee4ba
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -227,6 +227,7 @@ in
{ MODKEY, XK_p, spawn, {.v = dmenucmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_f, togglefullscr, {0} },
{ MODKEY, XK_v, togglefloating, {0} },
{ MODKEY, XK_j, focusstack, {.i = +1 } },
{ MODKEY, XK_k, focusstack, {.i = -1 } },
{ MODKEY, XK_h, setmfact, {.f = -0.05} },
@ -249,7 +250,6 @@ in
static const Button buttons[] = {
{ ClkClientWin, MODKEY, Button1, movemouse, {0} },
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} },
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} },
};
'';