2022-01-05 02:25:46 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
2022-01-10 00:20:33 +01:00
|
|
|
for SVG in _build/icons-t/categories/*.svg
|
2022-01-05 02:25:46 +01:00
|
|
|
do
|
2022-01-10 00:20:33 +01:00
|
|
|
if [[ -f "${SVG}" ]]; then
|
|
|
|
N=$(basename ${SVG} .svg)
|
2022-02-23 01:01:17 +01:00
|
|
|
|
2022-01-10 00:20:33 +01:00
|
|
|
parallel ::: \
|
2022-02-22 22:54:25 +01:00
|
|
|
"inkscape -w 8 -h 8 -o _build/aleta/categories/8/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 16 -h 16 -o _build/aleta/categories/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 22 -h 22 -o _build/aleta/categories/22/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 24 -h 24 -o _build/aleta/categories/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 32 -h 32 -o _build/aleta/categories/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 48 -h 48 -o _build/aleta/categories/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 64 -h 64 -o _build/aleta/categories/64/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 96 -h 96 -o _build/aleta/categories/96/${N}.png ${SVG} >/dev/null 2>&1" \
|
|
|
|
"inkscape -w 128 -h 128 -o _build/aleta/categories/128/${N}.png ${SVG} >/dev/null 2>&1"
|
2022-01-05 02:25:46 +01:00
|
|
|
|
2022-01-10 00:20:33 +01:00
|
|
|
mv ${SVG} _build/icons-e/categories/
|
2022-06-14 03:18:16 +02:00
|
|
|
|
|
|
|
echo exported: ${SVG}
|
2022-01-10 00:20:33 +01:00
|
|
|
fi
|
|
|
|
done
|