added symbolic export scripts and updated many scripts
This commit is contained in:
parent
d086f14165
commit
a59a7cc31b
36
tasks/export-symbolic/actions-sym.sh
Executable file
36
tasks/export-symbolic/actions-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/actions-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/actions/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 24 -h 24 -o _build/aleta/actions/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 32 -h 32 -o _build/aleta/actions/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 48 -h 48 -o _build/aleta/actions/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 64 -h 64 -o _build/aleta/actions/64/${N}.png ${SVG} >/dev/null 2>&1"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/actions/scalable/${Nscalable}.svg
|
||||
# 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/actions/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/animations-sym.sh
Executable file
36
tasks/export-symbolic/animations-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/animations-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/animations/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 24 -h 24 -o _build/aleta/animations/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 32 -h 32 -o _build/aleta/animations/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 48 -h 48 -o _build/aleta/animations/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 64 -h 64 -o _build/aleta/animations/64/${N}.png ${SVG} >/dev/null 2>&1"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/animations/scalable/${Nscalable}.svg
|
||||
# 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/animations/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/apps-sym.sh
Executable file
36
tasks/export-symbolic/apps-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/apps-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"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"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/apps/scalable/${Nscalable}.svg
|
||||
# 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/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/categories-sym.sh
Executable file
36
tasks/export-symbolic/categories-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/categories-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/categories/16/${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"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/categories/scalable/${Nscalable}.svg
|
||||
# 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/categories/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/devices-sym.sh
Executable file
36
tasks/export-symbolic/devices-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/devices-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
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"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/devices/scalable/${Nscalable}.svg
|
||||
# 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/devices/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/emblems-sym.sh
Executable file
36
tasks/export-symbolic/emblems-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/emblems-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"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"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/emblems/scalable/${Nscalable}.svg
|
||||
# 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
|
36
tasks/export-symbolic/mimetypes-sym.sh
Executable file
36
tasks/export-symbolic/mimetypes-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/mimetypes-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/mimetypes/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 24 -h 24 -o _build/aleta/mimetypes/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 32 -h 32 -o _build/aleta/mimetypes/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 48 -h 48 -o _build/aleta/mimetypes/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 64 -h 64 -o _build/aleta/mimetypes/64/${N}.png ${SVG} >/dev/null 2>&1"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/mimetypes/scalable/${Nscalable}.svg
|
||||
# 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/mimetypes/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/places-sym.sh
Executable file
36
tasks/export-symbolic/places-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/places-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/places/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 24 -h 24 -o _build/aleta/places/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 32 -h 32 -o _build/aleta/places/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 48 -h 48 -o _build/aleta/places/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 64 -h 64 -o _build/aleta/places/64/${N}.png ${SVG} >/dev/null 2>&1"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/places/scalable/${Nscalable}.svg
|
||||
# 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/places/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
36
tasks/export-symbolic/status-sym.sh
Executable file
36
tasks/export-symbolic/status-sym.sh
Executable file
@ -0,0 +1,36 @@
|
||||
#! /bin/bash
|
||||
|
||||
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
for SVG in _build/icons-t/status-symbolic/*.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 do de same, but removes .symbolic.svg
|
||||
Nscalable=$(basename ${SVG} .symbolic.svg)
|
||||
|
||||
# this runs the export operation in paralell.
|
||||
parallel ::: \
|
||||
"inkscape -w 16 -h 16 -o _build/aleta/status/16/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 24 -h 24 -o _build/aleta/status/24/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 32 -h 32 -o _build/aleta/status/32/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 48 -h 48 -o _build/aleta/status/48/${N}.png ${SVG} >/dev/null 2>&1" \
|
||||
"inkscape -w 64 -h 64 -o _build/aleta/status/64/${N}.png ${SVG} >/dev/null 2>&1"
|
||||
|
||||
# this copies the original svg to the scalable,
|
||||
# but replacing the .symbolic.svg with .svg
|
||||
cp ${SVG} _build/aleta/status/scalable/${Nscalable}.svg
|
||||
# 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/status/
|
||||
|
||||
# output to the terminal
|
||||
echo exported: ${SVG}
|
||||
fi
|
||||
done
|
Loading…
Reference in New Issue
Block a user