From a4467e61b4bdac5714bb084b3969cd2f4c8daada Mon Sep 17 00:00:00 2001 From: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Date: Fri, 4 Jun 2021 03:34:06 -0300 Subject: [PATCH] qtile: change kill window keybinding --- .config/qtile/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 97ab367..78f2bf5 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -31,7 +31,7 @@ keys = [ Key([MOD], "w", lazy.spawn(WEB), desc="Open web browser"), Key([MOD], "f", lazy.spawn(FILE_MANAGER), desc="Open file manager"), # Closes window. - Key([MOD, "shift"], "c", lazy.window.kill(), desc="Kill focused window"), + Key([MOD], "q", lazy.window.kill(), desc="Kill focused window"), # Switch between windows Key([MOD], "h", lazy.layout.left(), desc="Move focus to left"), Key([MOD], "l", lazy.layout.right(), desc="Move focus to right"),