fossfreedom / alternative-toolbar

Modern, minimal and music-focused interface for Rhythmbox
GNU General Public License v3.0
156 stars 20 forks source link

Optimize SVG icons #148

Closed HEXcube closed 4 years ago

HEXcube commented 5 years ago

Ran Inkscape's built-in optimizer and cleaned up SVG files. Removed all unnecessary cruft within SVG files and drastically reduced size from around ~130KB to ~12KB! :smiley: This is the command I ran:

for file in *.svg; do scour -i "$file" -o "$file"opt --set-precision=5 --renderer-workaround --enable-viewboxing --indent=space --nindent=2 --strip-xml-space --enable-id-stripping --protect-ids-noninkscape; mv -- "$file"opt "$file"; done