summaryrefslogtreecommitdiffstats
path: root/dundundun.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dundundun.sh')
-rwxr-xr-xdundundun.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/dundundun.sh b/dundundun.sh
index fc9b48d..993b059 100755
--- a/dundundun.sh
+++ b/dundundun.sh
@@ -13,10 +13,10 @@ mkdir -p export_tmp
13rm -f export_tmp/* 13rm -f export_tmp/*
14 14
15 15
16inkscape -z -e "export_tmp/1_raw.png" `printf "%s1.svg" $SOURCEBASE` 16inkscape -o "export_tmp/1_raw.png" `printf "%s1.svg" $SOURCEBASE`
17inkscape -z -e "export_tmp/2_raw.png" `printf "%s2.svg" $SOURCEBASE` 17inkscape -o "export_tmp/2_raw.png" `printf "%s2.svg" $SOURCEBASE`
18inkscape -z -e "export_tmp/3_raw.png" `printf "%s3.svg" $SOURCEBASE` 18inkscape -o "export_tmp/3_raw.png" `printf "%s3.svg" $SOURCEBASE`
19inkscape -z -e "export_tmp/4_raw.png" `printf "%s4.svg" $SOURCEBASE` 19inkscape -o "export_tmp/4_raw.png" `printf "%s4.svg" $SOURCEBASE`
20 20
21counter=5 21counter=5
22NUMPROCS=8 22NUMPROCS=8
@@ -29,7 +29,7 @@ do
29 offset=${shakeOffsets[counter-5]} 29 offset=${shakeOffsets[counter-5]}
30 file=`printf "export_tmp/%s_raw.png" $counter` 30 file=`printf "export_tmp/%s_raw.png" $counter`
31 source=`printf "%s4.svg" $SOURCEBASE` 31 source=`printf "%s4.svg" $SOURCEBASE`
32 inkscape -z -e $file -a $offset $source & 32 inkscape -o $file --export-area=$offset $source &
33 ((counter++)) 33 ((counter++))
34done 34done
35 35