From 7f3af09da35b8ec6a8a92b4555ddb867e4392dcc Mon Sep 17 00:00:00 2001 From: paul-loedige Date: Tue, 26 Jan 2021 15:09:08 +0100 Subject: [PATCH] fixed navigation between screens --- qtile/.config/qtile/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qtile/.config/qtile/config.py b/qtile/.config/qtile/config.py index 782a23a..eb4ee24 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/qtile/config.py @@ -52,9 +52,9 @@ keys = [ Key([mod], "j", lazy.layout.down(),desc="move focus down"), Key([mod], "k", lazy.layout.up(),desc="move focus up"), Key([mod,"mod1"], "k", lazy.to_screen(0),desc="move focus to top screen"), - Key([mod,"mod1"], "j", lazy.to_screen(1),desc="move focus to main screen"), - Key([mod,"mod1"], "l", lazy.to_screen(1),desc="move focus to main screen"), - Key([mod,"mod1"], "h", lazy.to_screen(2),desc="move focus to left screen"), + Key([mod,"mod1"], "j", lazy.to_screen(2),desc="move focus to main screen"), + Key([mod,"mod1"], "l", lazy.to_screen(2),desc="move focus to main screen"), + Key([mod,"mod1"], "h", lazy.to_screen(1),desc="move focus to left screen"), # moving windows around Key([mod, "shift"], "h", lazy.layout.swap_left(),desc="move focused window left"),