1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +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 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);
};
}