fixed navigation between screens

This commit is contained in:
paul-loedige
2021-01-26 15:09:08 +01:00
parent dfd514ea4d
commit 7f3af09da3
+3 -3
View File
@@ -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"),