Updates fish resize_images command

This commit is contained in:
Dennis Schoepf 2025-02-16 13:23:10 +01:00
parent 39e2b359ae
commit 226668ca74

View file

@ -23,10 +23,6 @@
fish_greeting = "fortune -a";
ng = "nvim -c \"Neogit\"";
resize_images = ''
if not command -q convert
echo "Error: ImageMagick is not installed. Please install it first."
return 1
for img in (find . -type f -name "*.JPG")
set original_size (stat -f %z "$img")
convert "$img" -resize 40% "$img"