aleta-postre/tasks/export/apps.sh

36 lines
1.4 KiB
Bash
Raw Normal View History

2022-01-05 02:25:46 +01:00
#! /bin/bash
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
#
# SPDX-License-Identifier: GPL-3.0-or-later
for SVG in _build/icons-t/apps/*.svg
2022-01-05 02:25:46 +01:00
do
if [[ -f "${SVG}" ]]; then
2022-09-07 04:04:55 +02:00
# this command removes the .svg extension in the file,
# and then write it to the variable N
N=$(basename ${SVG} .svg)
2022-09-07 04:04:55 +02:00
# this runs the export operation in paralell.
parallel ::: \
"inkscape -w 8 -h 8 -o _build/aleta/apps/8/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 16 -h 16 -o _build/aleta/apps/16/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 24 -h 24 -o _build/aleta/apps/24/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 32 -h 32 -o _build/aleta/apps/32/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 48 -h 48 -o _build/aleta/apps/48/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 64 -h 64 -o _build/aleta/apps/64/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 96 -h 96 -o _build/aleta/apps/96/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 128 -h 128 -o _build/aleta/apps/128/${N}.png ${SVG} >/dev/null 2>&1" \
"inkscape -w 256 -h 256 -o _build/aleta/apps/256/${N}.png ${SVG} >/dev/null 2>&1"
2022-09-07 04:04:55 +02:00
# 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/apps/
2022-06-14 03:18:16 +02:00
2022-09-07 04:04:55 +02:00
# output to the terminal
2022-06-14 03:18:16 +02:00
echo exported: ${SVG}
fi
2022-01-05 02:25:46 +01:00
done