forked from germedeb/aleta-postre
21 lines
749 B
Bash
Executable File
21 lines
749 B
Bash
Executable File
#! /bin/bash
|
|
|
|
for SVG in _build/icons-t/devices/*.svg
|
|
do
|
|
if [[ -f "${SVG}" ]]; then
|
|
N=$(basename ${SVG} .svg)
|
|
|
|
echo exporting ${SVG}
|
|
|
|
parallel ::: \
|
|
"inkscape -w 16 -h 16 -o _build/aleta/devices/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
"inkscape -w 24 -h 24 -o _build/aleta/devices/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
"inkscape -w 32 -h 32 -o _build/aleta/devices/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
"inkscape -w 48 -h 48 -o _build/aleta/devices/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
"inkscape -w 64 -h 64 -o _build/aleta/devices/64/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
"inkscape -w 96 -h 96 -o _build/aleta/devices/96/${N}.png ${SVG} >/dev/null 2>&1"
|
|
|
|
mv ${SVG} _build/icons-e/devices/
|
|
fi
|
|
done
|