From f5b920f4d2f920a1982ca844cfd22c8f1e82ed7e Mon Sep 17 00:00:00 2001 From: ykis-0-0 <64165725+ykis-0-0@users.noreply.github.com> Date: Wed, 20 Sep 2023 02:52:50 +0800 Subject: [PATCH] fluxbox: fix xsession command Fixes #4457 --- modules/services/window-managers/fluxbox.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/services/window-managers/fluxbox.nix b/modules/services/window-managers/fluxbox.nix index 99dfa50e..c06b14d6 100644 --- a/modules/services/window-managers/fluxbox.nix +++ b/modules/services/window-managers/fluxbox.nix @@ -107,8 +107,7 @@ in { mkIf (cfg.windowmenu != "") { text = cfg.windowmenu; }; }; - xsession.windowManager.command = concatStringsSep " " - ([ "${cfg.package}/bin/fluxbox" ] - ++ escapeShellArgs (remove "" cfg.extraCommandLineArgs)); + xsession.windowManager.command = escapeShellArgs + ([ "${cfg.package}/bin/fluxbox" ] ++ remove "" cfg.extraCommandLineArgs); }; }