mirror of
https://github.com/danth/stylix
synced 2024-11-22 12:13:08 +00:00
stylix: do not escape spaces in wallpaper path (#329)
Addresses: https://github.com/danth/stylix/issues/324
Reverts: a0bdd9c15b
This commit is contained in:
parent
b6dbe9ac5d
commit
f9b9bc7c8e
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} ${lib.escapeShellArg cfg.image} $out
|
||||
${palette-generator}/bin/palette-generator ${cfg.polarity} ${cfg.image} $out
|
||||
'';
|
||||
palette = importJSON generatedJSON;
|
||||
scheme = base16.mkSchemeAttrs palette;
|
||||
|
|
Loading…
Reference in a new issue