forked from germedeb/aleta-postre
germedeb
4fd3c9a220
and I added the copyright xd (REUSE specification 3.0) this commit adds all the license stuff to all the files.
27 lines
1.1 KiB
Bash
Executable File
27 lines
1.1 KiB
Bash
Executable File
#! /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
|
|
do
|
|
if [[ -f "${SVG}" ]]; then
|
|
N=$(basename ${SVG} .svg)
|
|
|
|
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"
|
|
mv ${SVG} _build/icons-e/apps/
|
|
|
|
echo exported: ${SVG}
|
|
fi
|
|
done
|