mirror of
https://github.com/GRFreire/dotfiles.git
synced 2026-01-10 04:19:38 +00:00
change 'move focus' keybind to alt+tab
This commit is contained in:
parent
9fe4afde2d
commit
07a7b8b984
@ -15,6 +15,7 @@ from libqtile.config import Click, Drag, Group, Key, Match, Screen
|
||||
from libqtile.lazy import lazy
|
||||
|
||||
MOD = "mod4"
|
||||
ALT = "mod1"
|
||||
TERMINAL = "alacritty"
|
||||
LAUNCHER = "rofi -show drun"
|
||||
WEB = "google-chrome"
|
||||
@ -36,7 +37,7 @@ keys = [
|
||||
Key([MOD], "l", lazy.layout.right(), desc="Move focus to right"),
|
||||
Key([MOD], "j", lazy.layout.down(), desc="Move focus down"),
|
||||
Key([MOD], "k", lazy.layout.up(), desc="Move focus up"),
|
||||
Key([MOD], "space", lazy.layout.next(), desc="Move window focus to other window"),
|
||||
Key([ALT], "Tab", lazy.layout.next(), desc="Move window focus to other window"),
|
||||
# Move windows between left/right columns.
|
||||
Key(
|
||||
[MOD, "shift"], "h", lazy.layout.shuffle_left(), desc="Move window to the left"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user