From b8d4ced114f4e5a044a71f170134d8a94d340c71 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Sun, 9 Oct 2022 20:19:52 -0700 Subject: [PATCH] Enable i3 smart gaps --- i3.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/i3.nix b/i3.nix index 0cc1f60..5bf03a9 100644 --- a/i3.nix +++ b/i3.nix @@ -15,7 +15,11 @@ in { config = { defaultWorkspace = "workspace number 1"; # defaults to 10 for some reason modifier = mod; - gaps.inner = 12; + # i3-gaps-specific configuration + gaps = { + inner = 12; + smartGaps = true; + }; startup = [ { command = "systemctl --user restart polybar";