projects
/
goodguy
/
cinelerra.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
version update
[goodguy/cinelerra.git]
/
cinelerra-5.1
/
plugins
/
theme_unflat
/
data
/
allsvgstopngs
1
#!/bin/bash
2
# This is a little utility that make all pngs that this theme needs
3
var="$@"
4
if [ -z "$var" ]; then
5
for i in `ls Source| grep \\\.svg`; do inkscape -e $(basename $i .svg).png Source/$i; done
6
else
7
for i in $@; do inkscape -e $(basename $i .svg).png Source/$i; done
8
fi