feat(sway): scale gaps properly

This commit is contained in:
buffet 2023-07-21 09:36:16 +02:00
parent 8e0e9a864b
commit 8e1b2e711b
2 changed files with 6 additions and 1 deletions

View file

@ -22,5 +22,10 @@ in {
in { in {
settings.main.font = lib.mkForce "${theme.font.family}:size=${toString (theme.font.size - 1)}"; settings.main.font = lib.mkForce "${theme.font.family}:size=${toString (theme.font.size - 1)}";
}; };
wayland.windowManager.sway = {
config.gaps.inner = lib.mkForce 5;
};
}; };
} }

View file

@ -62,7 +62,7 @@
}; };
gaps = { gaps = {
inner = 5; inner = 8;
outer = 0; outer = 0;
}; };