forked from germedeb/aleta-postre
23 lines
943 B
Bash
Executable File
23 lines
943 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for SVG in _build/icons-t/animations/*.svg
|
|
do
|
|
if [[ -f "${SVG}" ]]; then
|
|
N=$(basename ${SVG} .svg)
|
|
|
|
parallel ::: \
|
|
"inkscape -w 8 -h 8 -o _build/aleta/animations/8/${N}.png ${SVG}" \
|
|
"inkscape -w 16 -h 16 -o _build/aleta/animations/16/${N}.png ${SVG}" \
|
|
"inkscape -w 22 -h 22 -o _build/aleta/animations/22/${N}.png ${SVG}" \
|
|
"inkscape -w 24 -h 24 -o _build/aleta/animations/24/${N}.png ${SVG}" \
|
|
"inkscape -w 32 -h 32 -o _build/aleta/animations/32/${N}.png ${SVG}" \
|
|
"inkscape -w 48 -h 48 -o _build/aleta/animations/48/${N}.png ${SVG}" \
|
|
"inkscape -w 64 -h 64 -o _build/aleta/animations/64/${N}.png ${SVG}" \
|
|
"inkscape -w 96 -h 96 -o _build/aleta/animations/96/${N}.png ${SVG}" \
|
|
"inkscape -w 128 -h 128 -o _build/aleta/animations/128/${N}.png ${SVG}" \
|
|
"inkscape -w 256 -h 256 -o _build/aleta/animations/256/${N}.png ${SVG}"
|
|
|
|
mv ${SVG} _build/icons-e/animations/
|
|
fi
|
|
done
|