You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
325 B

  1. #!/bin/bash
  2. FILES=./icons/icons/*.svg
  3. DEST_DIR=build/icons
  4. EFFECT=-colorspace gray -fill green -tint 100
  5. mkdir -p $DEST_DIR
  6. for file in $FILES
  7. do
  8. SRC=$file
  9. DST=$DEST_DIR/`basename -s .svg "$file"`.png
  10. echo "$SRC --> $DST"
  11. convert -background none $SRC -colorspace gray -fill green -colorize 100 $DST
  12. done