diff options
| -rw-r--r-- | modules/sway/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/sway/default.nix b/modules/sway/default.nix index cd918ca..79af449 100644 --- a/modules/sway/default.nix +++ b/modules/sway/default.nix @@ -41,7 +41,7 @@ in package = if cfg.wrapWithNixGL then (config.lib.nixGL.wrap pkgs.sway) else pkgs.sway; # package = null; config = rec { - modifier = "Mod1"; + modifier = "Mod4"; left = "m"; down = "n"; @@ -166,6 +166,7 @@ in wrapping = "force"; }; + window = { border = 1; hideEdgeBorders = "--i3 smart"; @@ -283,6 +284,8 @@ in extraConfig = '' title_align center default_border pixel 1 + mouse_warping none + output HDMI-A-1 disable ''; }; }; |