added emblems export script

This commit is contained in:
germedeb 2022-09-10 15:55:18 -03:00
parent f5b68f6667
commit 5e2e9a8711
1 changed files with 35 additions and 0 deletions

35
tasks/export/emblems.sh Executable file
View File

@ -0,0 +1,35 @@
#! /bin/bash
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
#
# SPDX-License-Identifier: GPL-3.0-or-later
for SVG in _build/icons-t/emblems/*.svg
do
if [[ -f "${SVG}" ]]; then
# this command removes the .svg extension in the file,
# and then write it to the variable N
N=$(basename ${SVG} .svg)
# this runs the export operation in paralell.
parallel ::: \
"inkscape -w 8 -h 8 -o _build/aleta/emblems/8/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 16 -h 16 -o _build/aleta/emblems/16/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 24 -h 24 -o _build/aleta/emblems/24/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 32 -h 32 -o _build/aleta/emblems/32/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 48 -h 48 -o _build/aleta/emblems/48/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 64 -h 64 -o _build/aleta/emblems/64/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 96 -h 96 -o _build/aleta/emblems/96/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 128 -h 128 -o _build/aleta/emblems/128/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 256 -h 256 -o _build/aleta/emblems/256/${N}.png ${SVG} >/dev/null 2>&1"
# this moves the icon to the icons-e folder. this
# means that the icon is exported and you don't
# need to export it again
mv ${SVG} _build/icons-e/emblems/
# output to the terminal
echo exported: ${SVG}
fi
done