diff --git a/modules/desktop/i3.nix b/modules/desktop/i3.nix index d6f5f71..59928f2 100644 --- a/modules/desktop/i3.nix +++ b/modules/desktop/i3.nix @@ -168,16 +168,26 @@ in { "${modifier}+0" = "workspace ${ws10}"; # Move windows - "${modifier}+Shift+1" = "move container to workspace ${ws1}"; - "${modifier}+Shift+2" = "move container to workspace ${ws2}"; - "${modifier}+Shift+3" = "move container to workspace ${ws3}"; - "${modifier}+Shift+4" = "move container to workspace ${ws4}"; - "${modifier}+Shift+5" = "move container to workspace ${ws5}"; - "${modifier}+Shift+6" = "move container to workspace ${ws6}"; - "${modifier}+Shift+7" = "move container to workspace ${ws7}"; - "${modifier}+Shift+8" = "move container to workspace ${ws8}"; - "${modifier}+Shift+9" = "move container to workspace ${ws9}"; - "${modifier}+Shift+0" = "move container to workspace ${ws10}"; + "${modifier}+Shift+1" = + "move container to workspace ${ws1}; workspace ${ws1}"; + "${modifier}+Shift+2" = + "move container to workspace ${ws2}; workspace ${ws2}"; + "${modifier}+Shift+3" = + "move container to workspace ${ws3}; workspace ${ws3}"; + "${modifier}+Shift+4" = + "move container to workspace ${ws4}; workspace ${ws4}"; + "${modifier}+Shift+5" = + "move container to workspace ${ws5}; workspace ${ws5}"; + "${modifier}+Shift+6" = + "move container to workspace ${ws6}; workspace ${ws6}"; + "${modifier}+Shift+7" = + "move container to workspace ${ws7}; workspace ${ws7}"; + "${modifier}+Shift+8" = + "move container to workspace ${ws8}; workspace ${ws8}"; + "${modifier}+Shift+9" = + "move container to workspace ${ws9}; workspace ${ws9}"; + "${modifier}+Shift+0" = + "move container to workspace ${ws10}; workspace ${ws10}"; # Move screens "${modifier}+Control+l" = "move workspace to output right";