From 34f23cfedab68bb08d585f53ebf2dba896374270 Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Wed, 1 Mar 2023 23:54:07 -0500 Subject: [PATCH] Update --- .config/qtile/config.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index 10cf0ff..2272581 100644 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -107,6 +107,8 @@ keys = [ Key([mod], "r", lazy.spawn(rofi), desc="Launch rofi"), Key([mod], "z", lazy.run_extension(extension.WindowList()), desc="Launch window list"), Key([mod, "shift"], "u", lazy.spawn(hotkeys), desc="Show Hotkeys"), + Key([mod], "n", lazy.screen.next_group(skip_empty=True), desc="Switch to next group"), + Key([mod, "shift"], "n", lazy.screen.prev_group(skip_empty=True), desc="Switch to previous group"), # LAUNCH chord KeyChord([mod], "e", [ @@ -162,11 +164,6 @@ keys = [ ), ] -keys.extend([ - Key([mod], "n", lazy.screen.next_group(skip_empty=True), desc="Switch to next group"), - Key([mod, "shift"], "n", lazy.screen.prev_group(skip_empty=True), desc="Switch to previous group"), - ]) - # Groups groups = [Group(i) for i in "123456"]