removed the export sym actions script from file and from the build.sh script

This commit is contained in:
germedeb 2022-01-17 22:49:28 -03:00
parent c9f9bec133
commit ed7cebac1d
2 changed files with 0 additions and 23 deletions

View File

@ -26,7 +26,6 @@ cp icons/devices/*.svg _build/icons-t/devices/
cp icons/status/*.svg _build/icons-t/status/
cp icons/mimetypes/*.svg _build/icons-t/mimetypes/
cp icons/actions/*.svg _build/icons-t/actions/
cp icons/actions-sym/*.svg _build/icons-t/actions-sym/
cp icons/animations/*.svg _build/icons-t/animations/
printf "${info_color}starting link process...${reset_colors}\\n"
@ -40,7 +39,6 @@ printf "${info_color}exporting all the icons...${reset_colors}\\n"
./tasks/export/export-status.sh
./tasks/export/export-mimetypes.sh
./tasks/export/export-actions.sh
./tasks/export/export-sym-actions.sh
./tasks/export/export-animations.sh
printf "${info_color}Launching misc commands${reset_colors}\\n"

View File

@ -1,21 +0,0 @@
#! /bin/bash
for SVG in _build/icons-t/actions-sym/*.svg
do
if [[ -f "${SVG}" ]]; then
N=$(basename ${SVG} .svg)
parallel ::: \
"inkscape -w 16 -h 16 -o _build/aleta/actions-sym/16/${N}.png ${SVG}" \
"inkscape -w 24 -h 24 -o _build/aleta/actions-sym/24/${N}.png ${SVG}" \
"inkscape -w 32 -h 32 -o _build/aleta/actions-sym/32/${N}.png ${SVG}" \
"inkscape -w 48 -h 48 -o _build/aleta/actions-sym/48/${N}.png ${SVG}" \
"inkscape -w 64 -h 64 -o _build/aleta/actions-sym/64/${N}.png ${SVG}" \
"inkscape -w 96 -h 96 -o _build/aleta/actions-sym/96/${N}.png ${SVG}" \
"inkscape -w 128 -h 128 -o _build/aleta/actions-sym/128/${N}.png ${SVG}" \
mv ${SVG} _build/icons-e/actions-sym/
fi
done