1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 13:57:31 +02:00

fluxbox: fix xsession command

Fixes #4457
This commit is contained in:
ykis-0-0 2023-09-20 02:52:50 +08:00 committed by Mikilio
parent df848f4478
commit 5c2c27f5c1
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

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