grub2-themes/assets/assets-color/render-select-1080p.sh
vinceliuice 7e39b97009 Update
2019-12-05 17:55:00 +08:00

25 lines
419 B
Bash
Executable File

#! /bin/bash
INKSCAPE="/usr/bin/inkscape"
INDEX="select.txt"
ASSETS_DIR="select-1080p"
SRC_FILE="select.svg"
install -d $ASSETS_DIR
for i in `cat $INDEX`
do
if [ -f $ASSETS_DIR/$i.png ]; then
echo $ASSETS_DIR/$i.png exists.
else
echo
echo Rendering $ASSETS_DIR/$i.png
$INKSCAPE --export-id=$i \
--export-id-only \
--export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null
fi
done
exit 0