Duly Noted

Probably not the best place for a code snippet

Originally at https://notes.shaunagm.net/post/132616245237/probably-not-the-best-place-for-a-code-snippet

Making icons for Android is pretty tedious, until you realize you can manage everything with a shell script:

for x in FILENAME; do inkscape –export-png ${x}.png -w 48 ${x}.svg ; inkscape –export-png ../drawable-mdpi/${x}.png -w 48 ${x}.svg ; inkscape –export-png ../drawable-hdpi/${x}.png -w 72 ${x}.svg; inkscape –export-png ../drawable-xhdpi/${x}.png -w 96 ${x}.svg ; inkscape –export-png ../drawable-xxhdpi/${x}.png -w 144 ${x}.svg ; inkscape –export-png ../drawable-xxxhdpi/${x}.png -w 192 ${x}.svg ; mv ${x}.svg ${x}_source.svg ; done

Bless the shell.