From 7e30c0b050984d981d03bbdcb62a5651a2f63c69 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 19 Feb 2026 21:36:34 +0000 Subject: [PATCH] home: wm: i3: use grey background Because I sometimes do get a glimpse of the background, and would rather not have anything on it. --- modules/home/wm/i3/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/wm/i3/default.nix b/modules/home/wm/i3/default.nix index 5f22bbe..026f9f6 100644 --- a/modules/home/wm/i3/default.nix +++ b/modules/home/wm/i3/default.nix @@ -387,5 +387,10 @@ in }; }; }; + + # Use a grey background + xsession.profileExtra = '' + ${lib.getExe pkgs.xsetroot} -solid '#333333' + ''; }; }