From f9b9bc7c8e69942cd2583a3309f86fc5260f1275 Mon Sep 17 00:00:00 2001 From: NAHO <90870942+trueNAHO@users.noreply.github.com> Date: Wed, 3 Apr 2024 16:26:12 +0200 Subject: [PATCH] stylix: do not escape spaces in wallpaper path (#329) Addresses: https://github.com/danth/stylix/issues/324 Reverts: a0bdd9c15b23a5db48d29afe3b238333605c357c --- stylix/palette.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stylix/palette.nix b/stylix/palette.nix index eb568f8..744834a 100644 --- a/stylix/palette.nix +++ b/stylix/palette.nix @@ -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;