Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.1 / plugins / theme_blond / data / allsvgstopngs
diff --git a/cinelerra-5.1/plugins/theme_blond/data/allsvgstopngs b/cinelerra-5.1/plugins/theme_blond/data/allsvgstopngs
new file mode 100755 (executable)
index 0000000..98a9202
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/bash
+# This is a little utility that make all pngs that this theme needs
+var="$@"
+if [ -z "$var" ]; then
+for i in `ls Source| grep \\\.svg`; do inkscape -e $(basename $i .svg).png Source/$i; done
+else
+for i in $@; do inkscape -e $(basename $i .svg).png Source/$i; done
+fi