diff options
| author | stefan <stefan@s00.xyz> | 2025-05-22 00:07:20 -0400 |
|---|---|---|
| committer | stefan <stefan@s00.xyz> | 2025-05-22 00:07:20 -0400 |
| commit | e430d30bd8a2c3da5e73d13c5bb26f25e2483dd6 (patch) | |
| tree | f3667fc1c315bf325736441370fe2a140abb9762 | |
| parent | 949bdb233fd26bfe5ba51368f6172a33a369f714 (diff) | |
| download | home-e430d30bd8a2c3da5e73d13c5bb26f25e2483dd6.tar.gz | |
`modules/sway`: update modifier
| -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 ''; }; }; |