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"),