From 12938a85b70e58b819e88072ae686dddd3b3e3dc Mon Sep 17 00:00:00 2001 From: FirelightFlagboy <30697622+FirelightFlagboy@users.noreply.github.com> Date: Wed, 25 Dec 2024 18:43:53 +0100 Subject: [PATCH] doc: resolve 'magick convert' deprecation warning (#697) Resolve the following 'magick convert' deprecation warning: WARNING: The convert command is deprecated in IMv7, use "magick" instead of "convert" or "magick convert" Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> (cherry picked from commit a70154ec03034cfd1a88868dc0259456fc618435) --- docs/src/tricks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tricks.md b/docs/src/tricks.md index 5fdda9fed..66c90af2b 100644 --- a/docs/src/tricks.md +++ b/docs/src/tricks.md @@ -35,7 +35,7 @@ let wallpaper = pkgs.runCommand "image.png" {} '' COLOR=$(${pkgs.yq}/bin/yq -r .base00 ${theme}) COLOR="#"$COLOR - ${pkgs.imagemagick}/bin/magick convert -size 1920x1080 xc:$COLOR $out + ${pkgs.imagemagick}/bin/magick -size 1920x1080 xc:$COLOR $out ''; in { stylix = {