mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01: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;
|
cfg = config.services.random-background;
|
||||||
|
|
||||||
flags = lib.concatStringsSep " " (
|
flags = lib.concatStringsSep " " (
|
||||||
[ "--randomize" "--bg-${cfg.display}" ]
|
[
|
||||||
|
"--bg-${cfg.display}"
|
||||||
|
"--no-fehbg"
|
||||||
|
"--randomize"
|
||||||
|
]
|
||||||
++ lib.optional (!cfg.enableXinerama) "--no-xinerama"
|
++ lib.optional (!cfg.enableXinerama) "--no-xinerama"
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue