flags/make_flags.sh@a0ddbc9a4e77
flags/make_flags.sh
Tue, 28 Jun 2022 14:53:22 +0300
- author
- Teemu Piippo <teemu.s.piippo@gmail.com>
- date
- Tue, 28 Jun 2022 14:53:22 +0300
- changeset 289
- a0ddbc9a4e77
- parent 6
-
73e448b2943d
- permissions
- -rwxr-xr-x
Work around a Qt bug involving the rendering behavior of the first created sub window
#!/bin/bash
for flag in *.svg
do
flag_png="${flag%.svg}.png"
echo "$flag => $flag_png"
inkscape -z -e ${flag_png} -w 64 $flag
done