Skip to content

Commit

Permalink
doc: resolve 'magick convert' deprecation warning (#697)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
FirelightFlagboy authored Dec 25, 2024
1 parent 4d87b96 commit a70154e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit a70154e

Please sign in to comment.