From 50ce6cfdec7a2db5573754b840833f4c7f716f7d Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Mon, 24 Feb 2025 00:57:35 +0100 Subject: [PATCH] fix(sway): inccorect statements for mouvments keybindings --- modules/home-manager/desktop/sway/includes/sway.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home-manager/desktop/sway/includes/sway.nix b/modules/home-manager/desktop/sway/includes/sway.nix index 2592711..b94019e 100644 --- a/modules/home-manager/desktop/sway/includes/sway.nix +++ b/modules/home-manager/desktop/sway/includes/sway.nix @@ -55,8 +55,8 @@ in # move with Shift and direction "${mod}+Shift+${left}" = "move left"; "${mod}+Shift+${down}" = "move down"; - "${mod}+Shift+${up} move" = "move up"; - "${mod}+Shift+${right} move" = "move right"; + "${mod}+Shift+${up}" = "move up"; + "${mod}+Shift+${right}" = "move right"; "${mod}+Shift+1" = "move container to workspace $ws1"; "${mod}+Shift+2" = "move container to workspace $ws2"; "${mod}+Shift+3" = "move container to workspace $ws3";