From 457d4841ea9c0990ac4bd943c9b3f0b470b3f614 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 f2dd051..05b202c 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' + ''; }; }