From 07a7b8b9843b8ad632c08039a492e270ad62107f Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Fri, 4 Jun 2021 02:07:53 -0300 Subject: [PATCH] change 'move focus' keybind to alt+tab --- .config/qtile/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index df33b33..97ab367 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -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"