mirror of
https://github.com/danth/stylix
synced 2024-11-10 06:34:15 +00:00
stylix: escape spaces in wallpaper path (#317)
This commit is contained in:
parent
3c6b34fbc2
commit
a0bdd9c15b
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ let
|
|||
|
||||
paletteJSON = let
|
||||
generatedJSON = pkgs.runCommand "palette.json" { } ''
|
||||
${palette-generator}/bin/palette-generator ${cfg.polarity} ${cfg.image} $out
|
||||
${palette-generator}/bin/palette-generator ${cfg.polarity} ${lib.escapeShellArg cfg.image} $out
|
||||
'';
|
||||
palette = importJSON generatedJSON;
|
||||
scheme = base16.mkSchemeAttrs palette;
|
||||
|
|
Loading…
Reference in a new issue