qtile: shortcuts to toggle maxmize and floating

This commit is contained in:
Guilherme Rugai Freire 2021-08-06 18:34:14 -03:00
parent ee79418254
commit da3ae78aba
No known key found for this signature in database
GPG Key ID: 0F9FE41723A8A297

View File

@ -70,6 +70,8 @@ keys = [
Key([MOD], "n", lazy.layout.normalize(), desc="Reset all window sizes"), Key([MOD], "n", lazy.layout.normalize(), desc="Reset all window sizes"),
# Toggle between different layouts. # Toggle between different layouts.
Key([MOD], "Tab", lazy.next_layout(), desc="Toggle between layouts"), Key([MOD], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
Key([MOD], "m", lazy.window.toggle_fullscreen(), desc="Toggle maximize state of the window"),
Key([MOD], "t", lazy.window.toggle_floating(), desc="Toggle floating state of the window"),
# QTile # QTile
Key([MOD, "control"], "r", lazy.restart(), desc="Restart Qtile"), Key([MOD, "control"], "r", lazy.restart(), desc="Restart Qtile"),
Key([MOD, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"), Key([MOD, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"),