qtile: change kill window keybinding

This commit is contained in:
Guilherme Rugai Freire 2021-06-04 03:34:06 -03:00
parent 07a7b8b984
commit a4467e61b4
No known key found for this signature in database
GPG Key ID: 86DC96AE4AEBC162

View File

@ -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"),