diff --git a/tasks/build.sh b/tasks/build.sh index 193b641..4fe9a1c 100755 --- a/tasks/build.sh +++ b/tasks/build.sh @@ -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" diff --git a/tasks/export/export-sym-actions.sh b/tasks/export/export-sym-actions.sh deleted file mode 100755 index 5e9eb15..0000000 --- a/tasks/export/export-sym-actions.sh +++ /dev/null @@ -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 -