From 1f3332604b981c832b3bffa1a14da83ec3a2c0a6 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 24 Oct 2021 14:38:00 -0400 Subject: [PATCH] qtile: update keybinds --- users/infinidoge/config/qtile/config.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/users/infinidoge/config/qtile/config.py b/users/infinidoge/config/qtile/config.py index f60fef9..92a0856 100644 --- a/users/infinidoge/config/qtile/config.py +++ b/users/infinidoge/config/qtile/config.py @@ -224,15 +224,25 @@ keys = [ desc="Kill focused window", ), Key( - [Keys.SUPER, Keys.CONTROL], "r", - lazy.restart(), - desc="Restart Qtile", + [Keys.SUPER, Keys.CONTROL, Keys.SHIFT], "f", + lazy.window.toggle_floating(), + desc="Toggle window's floating mode" ), Key( - [Keys.SUPER, Keys.CONTROL], "q", - lazy.shutdown(), - desc="Shutdown Qtile", + [Keys.SUPER, Keys.CONTROL], "r", + lazy.reload_config(), + desc="Reload Qtile Configuration", ), + # Key( + # [Keys.SUPER, Keys.CONTROL], "r", + # lazy.restart(), + # desc="Restart Qtile", + # ), + # Key( + # [Keys.SUPER, Keys.CONTROL], "q", + # lazy.shutdown(), + # desc="Shutdown Qtile", + # ), Key( [Keys.SUPER, Keys.CONTROL], "l", lazy.spawn("xsecurelock"),