mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 23:24:21 +00:00
random-background: disable creation of ~/.fehbg
file
This commit is contained in:
parent
b2a787ca69
commit
bfc28cacbe
1 changed files with 5 additions and 1 deletions
|
@ -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"
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue