fluxbox: fix xsession command

Fixes #4457
This commit is contained in:
ykis-0-0 2023-09-20 02:52:50 +08:00 committed by GitHub
parent ee9f5dc8f6
commit f5b920f4d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
};
}