config/qtile: add top/left slice layouts
This commit is contained in:
parent
75a3c3c151
commit
ec24677e6b
1 changed files with 14 additions and 1 deletions
|
@ -237,6 +237,11 @@ keys = [
|
|||
lazy.layout.maximize(),
|
||||
desc="Maximize the selected window",
|
||||
),
|
||||
Key(
|
||||
[Keys.SUPER, Keys.CONTROL, Keys.SHIFT], "m",
|
||||
lazy.layout.move_to_slice(),
|
||||
desc="Move window to slice",
|
||||
),
|
||||
|
||||
# Toggle between different layouts as defined below
|
||||
Key(
|
||||
|
@ -454,7 +459,15 @@ layouts = [
|
|||
]
|
||||
|
||||
groups = [
|
||||
*[Group(i) for i in "123456789"],
|
||||
*[Group(i) for i in "12345678"],
|
||||
Group(
|
||||
"9",
|
||||
layouts=[
|
||||
*layouts,
|
||||
layout.Slice(name="left slice", width=1000, fallback=layouts[0], side="left"),
|
||||
layout.Slice(name="top slice", width=800, fallback=layouts[0], side="top"),
|
||||
],
|
||||
),
|
||||
Group("0", layouts=[layout.TreeTab()]),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue