From 6aaea9cf4b283d41016e60735f52c8feb3cd0c9e Mon Sep 17 00:00:00 2001 From: Justine Smithies Date: Tue, 22 Aug 2023 19:46:15 +0100 Subject: Initial commit --- .config/qtile/mouse.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .config/qtile/mouse.py (limited to '.config/qtile/mouse.py') diff --git a/.config/qtile/mouse.py b/.config/qtile/mouse.py new file mode 100644 index 0000000..6cd0e88 --- /dev/null +++ b/.config/qtile/mouse.py @@ -0,0 +1,28 @@ +# Justine Smithies +# https://github.com/justinesmithies/qtile-wayland-dotfiles + +# Mouse floating layouts. + +from libqtile.config import Drag, Click +from libqtile.command import lazy +from keys import mod + +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() + ) +] -- cgit v1.2.3