lila/bin/svg-fix
2017-02-09 14:03:53 +01:00

8 lines
342 B
Bash
Executable file

#!/bin/bash
# Makes game-icons SVGs work as M$ Edge CSS background
grep -rl '.svg' ./public/images/practice/ | xargs sed -i 's/ style="height: 512px; width: 512px;"//g';
# Remove pointless transparent backgrounds
grep -rl '.svg' ./public/images/practice/ | xargs sed -i 's/<path d="M0 0h512v512H0z" fill="#000000" opacity="0"><\/path>//g';