Adding ALT mousebindings so I can drag/resize floating windows inside a VM

This commit is contained in:
Derek Taylor
2025-05-07 17:28:25 -05:00
parent 5015c2f7a6
commit 3c3084d82b
2 changed files with 10 additions and 1 deletions

View File

@@ -446,6 +446,10 @@ mouse = [
Drag([mod], "Button1", lazy.window.set_position_floating(), start=lazy.window.get_position()),
Drag([mod], "Button3", lazy.window.set_size_floating(), start=lazy.window.get_size()),
Click([mod], "Button2", lazy.window.bring_to_front()),
Drag(["mod1"], "Button1", lazy.window.set_position_floating(), start=lazy.window.get_position()),
Drag(["mod1"], "Button3", lazy.window.set_size_floating(), start=lazy.window.get_size()),
Click(["mod1"], "Button2", lazy.window.bring_to_front()),
]
dgroups_key_binder = None