Lates Changes
This commit is contained in:
parent
632d87274a
commit
b3bbd5c73f
3
info.txt
3
info.txt
|
@ -1,3 +1,6 @@
|
||||||
|
Start VM without sudo
|
||||||
|
virsh --connect qemu:///system start archlinux
|
||||||
|
|
||||||
Packages:
|
Packages:
|
||||||
exa neomutt htop picom xfce-power-manager nitrogen dunst
|
exa neomutt htop picom xfce-power-manager nitrogen dunst
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -46,22 +46,29 @@ browser = "chromium"
|
||||||
# KEYBINDINGS
|
# KEYBINDINGS
|
||||||
|
|
||||||
keys = [
|
keys = [
|
||||||
# A list of available commands that can be bound to keys can be found
|
|
||||||
# at https://docs.qtile.org/en/latest/manual/config/lazy.html
|
|
||||||
# Switch between windows
|
|
||||||
Key([mod], "Left", lazy.layout.left(), desc="Move focus to left"),
|
Key([mod], "Left", lazy.layout.left(), desc="Move focus to left"),
|
||||||
Key([mod], "Right", lazy.layout.right(), desc="Move focus to right"),
|
Key([mod], "Right", lazy.layout.right(), desc="Move focus to right"),
|
||||||
Key([mod], "Down", lazy.layout.down(), desc="Move focus down"),
|
Key([mod], "Down", lazy.layout.down(), desc="Move focus down"),
|
||||||
Key([mod], "Up", lazy.layout.up(), desc="Move focus up"),
|
Key([mod], "Up", lazy.layout.up(), desc="Move focus up"),
|
||||||
Key([mod], "space", lazy.layout.next(), desc="Move window focus to other window"),
|
Key([mod], "space", lazy.layout.next(), desc="Move window focus to other window"),
|
||||||
# Move windows between left/right columns or move up/down in current stack.
|
|
||||||
# Moving out of range in Columns layout will create new column.
|
|
||||||
Key([mod, "shift"], "Left", lazy.layout.shuffle_left(), desc="Move window to the left"),
|
Key([mod, "shift"], "Left", lazy.layout.shuffle_left(), desc="Move window to the left"),
|
||||||
Key([mod, "shift"], "Right", lazy.layout.shuffle_right(), desc="Move window to the right"),
|
Key([mod, "shift"], "Right", lazy.layout.shuffle_right(), desc="Move window to the right"),
|
||||||
Key([mod, "shift"], "Down", lazy.layout.shuffle_down(), desc="Move window down"),
|
Key([mod, "shift"], "Down", lazy.layout.shuffle_down(), desc="Move window down"),
|
||||||
Key([mod, "shift"], "Up", lazy.layout.shuffle_up(), desc="Move window up"),
|
Key([mod, "shift"], "Up", lazy.layout.shuffle_up(), desc="Move window up"),
|
||||||
# Grow windows. If current window is on the edge of screen and direction
|
|
||||||
# will be to screen edge - window would shrink.
|
Key([mod], "h",
|
||||||
|
lazy.layout.shrink(),
|
||||||
|
lazy.layout.decrease_nmaster(),
|
||||||
|
desc='Shrink window (MonadTall), decrease number in master pane (Tile)'
|
||||||
|
),
|
||||||
|
Key([mod], "l",
|
||||||
|
lazy.layout.grow(),
|
||||||
|
lazy.layout.increase_nmaster(),
|
||||||
|
desc='Expand window (MonadTall), increase number in master pane (Tile)'
|
||||||
|
),
|
||||||
|
|
||||||
Key([mod, "control"], "Left", lazy.layout.grow_left(), desc="Grow window to the left"),
|
Key([mod, "control"], "Left", lazy.layout.grow_left(), desc="Grow window to the left"),
|
||||||
Key([mod, "control"], "Right", lazy.layout.grow_right(), desc="Grow window to the right"),
|
Key([mod, "control"], "Right", lazy.layout.grow_right(), desc="Grow window to the right"),
|
||||||
Key([mod, "control"], "Down", lazy.layout.grow_down(), desc="Grow window down"),
|
Key([mod, "control"], "Down", lazy.layout.grow_down(), desc="Grow window down"),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user