This repository has been archived on 2021-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
ui/assets/fontawesome/convert.sh

8 lines
205 B
Bash
Executable File

#!/bin/bash
for f in *.svg; do
echo "converting $f"
sed -i 's/>/><style>path\{stroke:#FFFFFF;fill:#FFFFFF\}<\/style>/' $f #> $f.intermediate
#inkscape -z -e $f.png -w 1024 -h 1024 $f.intermediate
done