60 lines
1.1 KiB
Python
60 lines
1.1 KiB
Python
from libqtile.lazy import lazy
|
|
from libqtile.config import EzKey as Key
|
|
|
|
from config import apps, modifier_keys
|
|
|
|
keys = [
|
|
# Focus manipulation
|
|
Key(
|
|
"M-h",
|
|
lazy.layout.left(),
|
|
desc="Move focus to the left",
|
|
),
|
|
Key(
|
|
"M-l",
|
|
lazy.layout.right(),
|
|
desc="Move focus to the right",
|
|
),
|
|
Key(
|
|
"M-j",
|
|
lazy.layout.down(),
|
|
desc="Move focus to the down",
|
|
),
|
|
Key(
|
|
"M-k",
|
|
lazy.layout.up(),
|
|
desc="Move focus to the up",
|
|
),
|
|
# Window manipulation
|
|
Key(
|
|
"M-S-h",
|
|
lazy.layout.swap_left(),
|
|
desc="Move window to the left",
|
|
),
|
|
Key(
|
|
"M-S-l",
|
|
lazy.layout.swap_right(),
|
|
desc="Move window to the right",
|
|
),
|
|
Key(
|
|
"M-S-j",
|
|
lazy.layout.shuffle_down(),
|
|
desc="Move window down",
|
|
),
|
|
Key(
|
|
"M-S-k",
|
|
lazy.layout.shuffle_up(),
|
|
desc="Move window up",
|
|
),
|
|
Key(
|
|
"M-S-i",
|
|
lazy.layout.shrink(),
|
|
desc="Increase window size",
|
|
),
|
|
Key(
|
|
"M-S-m",
|
|
lazy.layout.grow(),
|
|
desc="Decrease window size",
|
|
),
|
|
]
|