3 colors
="blue yellow brown grey green violet red purple navy sea_blue emerald hot_orange white viorange"
8 for color
in $colors; do
10 echo "Generating PNGs for the color: $color"
13 mkdir
-p ..
/pngs
/$color;
14 cp $color/*.svg ..
/pngs
/$color/
17 #cleanup from previous pngs
20 for icon
in $
(ls *.svg
); do
21 # if [ "$icon" != "half-busy.svg" ] && [ "$icon" != "fleur.svg" ];
23 inkscape
--without-gui --export-png=$
( echo $icon |
sed s
/.svg
// ).png
--export-dpi=90 $icon 2> /dev
/null
; # --export-background-opacity=0 --export-width=$SIZE --export-height=$SIZE $icon 2> /dev/null;
25 # inkscape --without-gui --export-png=$( echo $icon | sed s/.svg// ).png --export-background-opacity=0 --export-width=32 --export-height=32 $icon 2> /dev/null;