1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00

random-background: disable creation of ~/.fehbg file

This commit is contained in:
Robert Helgesson 2019-08-26 20:07:07 +02:00
parent b2a787ca69
commit bfc28cacbe
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -7,7 +7,11 @@ let
cfg = config.services.random-background;
flags = lib.concatStringsSep " " (
[ "--randomize" "--bg-${cfg.display}" ]
[
"--bg-${cfg.display}"
"--no-fehbg"
"--randomize"
]
++ lib.optional (!cfg.enableXinerama) "--no-xinerama"
);