[qtile] Added keys for window resizing

This commit is contained in:
Marcel Kapfer 2020-08-10 10:57:45 +02:00
parent e2ca2b0a02
commit 6b6d962643
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 3 additions and 2 deletions

View File

@ -44,8 +44,9 @@ keys = [
Key([mod, "control"], "k", lazy.layout.shuffle_up()),
# Increase and decrease window size
Key([mod, "control"], "l", lazy.layout.increase_ratio()),
Key([mod, "control"], "h", lazy.layout.decrease_ratio()),
Key([mod, "control"], "l", lazy.layout.grow()),
Key([mod, "control"], "h", lazy.layout.shrink()),
Key([mod, "control"], "n", lazy.layout.normalize()),
# Switch window focus to other pane(s) of stack
Key([mod], "space", lazy.layout.next()),