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/qml/images/fontawesome/regular/convert.sh

9 lines
228 B
Bash
Executable File

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