about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorVitor Gonçalves <vitorg@tilde.team>2023-05-21 07:02:24 -0300
committerVitor Gonçalves <vitorg@tilde.team>2023-05-21 07:02:24 -0300
commite11cc0cef6608f202ff6c6faf9ac38aa299d2d9a (patch)
tree310efc2ae2b93d108bd956cbc37f85be038fe342
parent39feacf92bb99deccb5bdb13d119a0102cc10742 (diff)
downloaddots-e11cc0cef6608f202ff6c6faf9ac38aa299d2d9a.tar.gz
Update .config/qtile/config.py
-rw-r--r--dot_config/qtile/config.py17
1 files changed, 5 insertions, 12 deletions
diff --git a/dot_config/qtile/config.py b/dot_config/qtile/config.py
index 3b11fd0..fd83d81 100644
--- a/dot_config/qtile/config.py
+++ b/dot_config/qtile/config.py
@@ -7,7 +7,6 @@ terminal = "alacritty"
 browser = "firefox"
 run_prompt = "dmenu_run"
 
-
 # colors
 accent  = "#ea6962"
 accent2 = "#d8a657"
@@ -85,17 +84,11 @@ for i in groups:
                 lazy.group[i.name].toscreen(),
                 desc="Switch to group {}".format(i.name),
             ),
-            # mod1 + shift + letter of group = switch to & move focused window to group
-            Key(
-                [mod, "shift"],
-                i.name,
-                lazy.window.togroup(i.name, switch_group=True),
-                desc="Switch to & move focused window to group {}".format(i.name),
-            ),
-            # Or, use below if you prefer not to switch to that group.
-            # # mod1 + shift + letter of group = move focused window to group
-            # Key([mod, "shift"], i.name, lazy.window.togroup(i.name),
-            #     desc="move focused window to group {}".format(i.name)),
+
+            # mod1 + shift + letter of group = move focused window to group
+            Key([mod, "shift"], i.name,
+                lazy.window.togroup(i.name),
+                desc="move focused window to group {}".format(i.name)),
         ]
     )