summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFeuerfuchs <git@feuerfuchs.dev>2019-09-30 09:33:01 +0200
committerFeuerfuchs <git@feuerfuchs.dev>2019-09-30 09:33:01 +0200
commitdae496e28b60c87b0c41a5386165ec65088f4a54 (patch)
treef73a89ebe8296f30280a338a62e903f7b9b41619
parentnew: kirby, lurkaww, prelurk*, science, wave (diff)
downloadblobfox-emojis-dae496e28b60c87b0c41a5386165ec65088f4a54.tar.gz
blobfox-emojis-dae496e28b60c87b0c41a5386165ec65088f4a54.tar.bz2
blobfox-emojis-dae496e28b60c87b0c41a5386165ec65088f4a54.zip
"a" prefix for animated files, improved (pre)lurk*
-rw-r--r--ablobfoxdundundun1.svg (renamed from blobfoxdundundun1.svg)0
-rw-r--r--ablobfoxdundundun2.svg (renamed from blobfoxdundundun2.svg)0
-rw-r--r--ablobfoxdundundun3.svg (renamed from blobfoxdundundun3.svg)0
-rw-r--r--ablobfoxdundundun4.svg (renamed from blobfoxdundundun4.svg)0
-rw-r--r--ablobfoxhyper1.svg (renamed from blobfoxhyper1.svg)0
-rw-r--r--ablobfoxhyper2.svg (renamed from blobfoxhyper2.svg)0
-rw-r--r--ablobfoxhyper3.svg (renamed from blobfoxhyper3.svg)0
-rw-r--r--ablobfoxhypercofe.svg (renamed from blobfoxhypercofe.svg)0
-rw-r--r--ablobfoxhyperowo.svg (renamed from blobfoxhyperowo.svg)0
-rw-r--r--ablobfoxhyperthinking.svg (renamed from blobfoxhyperthinking.svg)0
-rwxr-xr-xanimate.sh35
-rwxr-xr-xblobfoxdundundun.sh10
-rw-r--r--blobfoxlurk.svg6
-rw-r--r--blobfoxlurkaww.svg10
-rw-r--r--blobfoxlurkglare.svg4
-rw-r--r--blobfoxlurkowo.svg6
-rw-r--r--blobfoxlurkowonotice.svg4
-rw-r--r--blobfoxprelurkcofe.svg8
-rw-r--r--blobfoxprelurkcroutons.svg8
-rw-r--r--blobfoxprelurkdonut.svg8
-rwxr-xr-xgen.sh12
-rwxr-xr-xhyperize.sh2
22 files changed, 74 insertions, 39 deletions
diff --git a/blobfoxdundundun1.svg b/ablobfoxdundundun1.svg
index 3abbca0..3abbca0 100644
--- a/blobfoxdundundun1.svg
+++ b/ablobfoxdundundun1.svg
diff --git a/blobfoxdundundun2.svg b/ablobfoxdundundun2.svg
index 3c764c0..3c764c0 100644
--- a/blobfoxdundundun2.svg
+++ b/ablobfoxdundundun2.svg
diff --git a/blobfoxdundundun3.svg b/ablobfoxdundundun3.svg
index 7f9af5e..7f9af5e 100644
--- a/blobfoxdundundun3.svg
+++ b/ablobfoxdundundun3.svg
diff --git a/blobfoxdundundun4.svg b/ablobfoxdundundun4.svg
index 32961ba..32961ba 100644
--- a/blobfoxdundundun4.svg
+++ b/ablobfoxdundundun4.svg
diff --git a/blobfoxhyper1.svg b/ablobfoxhyper1.svg
index 07e7ebe..07e7ebe 100644
--- a/blobfoxhyper1.svg
+++ b/ablobfoxhyper1.svg
diff --git a/blobfoxhyper2.svg b/ablobfoxhyper2.svg
index a789665..a789665 100644
--- a/blobfoxhyper2.svg
+++ b/ablobfoxhyper2.svg
diff --git a/blobfoxhyper3.svg b/ablobfoxhyper3.svg
index ef5c1a4..ef5c1a4 100644
--- a/blobfoxhyper3.svg
+++ b/ablobfoxhyper3.svg
diff --git a/blobfoxhypercofe.svg b/ablobfoxhypercofe.svg
index 3218db2..3218db2 100644
--- a/blobfoxhypercofe.svg
+++ b/ablobfoxhypercofe.svg
diff --git a/blobfoxhyperowo.svg b/ablobfoxhyperowo.svg
index f212526..f212526 100644
--- a/blobfoxhyperowo.svg
+++ b/ablobfoxhyperowo.svg
diff --git a/blobfoxhyperthinking.svg b/ablobfoxhyperthinking.svg
index b7f70dc..b7f70dc 100644
--- a/blobfoxhyperthinking.svg
+++ b/ablobfoxhyperthinking.svg
diff --git a/animate.sh b/animate.sh
new file mode 100755
index 0000000..8d8afda
--- /dev/null
+++ b/animate.sh
@@ -0,0 +1,35 @@
1#!/bin/sh
2
3SOURCEBASE=$1
4MAX=$2
5DELAY=$3
6SOURCESVG=`printf "%s.svg" $SOURCEBASE`
7TARGETSVG=`printf "export/%s.png" $SOURCEBASE`
8
9
10mkdir -p export_tmp
11rm -f export_tmp/*
12
13
14counter=1
15while [ $counter -le $MAX ]
16do
17 source=`printf "%s%s.svg" $SOURCEBASE $counter`
18 file=`printf "export_tmp/%s.png" $counter`
19 inkscape -z -e $file $source
20 ((counter++))
21done
22
23
24declare -a args
25
26counter=1
27while [ $counter -le $MAX ]
28do
29 file=`printf "export_tmp/%s.png" $counter`
30 args+=($file $DELAY)
31 ((counter++))
32done
33
34apngasm -o $TARGETSVG ${args[@]}
35rm -f export_tmp/*
diff --git a/blobfoxdundundun.sh b/blobfoxdundundun.sh
index 98a8a89..f0c23e0 100755
--- a/blobfoxdundundun.sh
+++ b/blobfoxdundundun.sh
@@ -10,17 +10,17 @@ mkdir -p export_tmp
10rm -f export_tmp/* 10rm -f export_tmp/*
11 11
12 12
13inkscape -z -e "export_tmp/1.png" "blobfoxdundundun1.svg" 13inkscape -z -e "export_tmp/1.png" "ablobfoxdundundun1.svg"
14inkscape -z -e "export_tmp/2.png" "blobfoxdundundun2.svg" 14inkscape -z -e "export_tmp/2.png" "ablobfoxdundundun2.svg"
15inkscape -z -e "export_tmp/3.png" "blobfoxdundundun3.svg" 15inkscape -z -e "export_tmp/3.png" "ablobfoxdundundun3.svg"
16inkscape -z -e "export_tmp/4.png" "blobfoxdundundun4.svg" 16inkscape -z -e "export_tmp/4.png" "ablobfoxdundundun4.svg"
17 17
18counter=5 18counter=5
19while [ $counter -le 79 ] 19while [ $counter -le 79 ]
20do 20do
21 offset=${shakeOffsets[counter-5]} 21 offset=${shakeOffsets[counter-5]}
22 file=`printf "export_tmp/%s.png" $counter` 22 file=`printf "export_tmp/%s.png" $counter`
23 inkscape -z -e $file -a $offset "blobfoxdundundun4.svg" 23 inkscape -z -e $file -a $offset "ablobfoxdundundun4.svg"
24 ((counter++)) 24 ((counter++))
25done 25done
26 26
diff --git a/blobfoxlurk.svg b/blobfoxlurk.svg
index 651a6ec..24bd390 100644
--- a/blobfoxlurk.svg
+++ b/blobfoxlurk.svg
@@ -407,8 +407,8 @@
407 inkscape:pageopacity="0.0" 407 inkscape:pageopacity="0.0"
408 inkscape:pageshadow="2" 408 inkscape:pageshadow="2"
409 inkscape:zoom="2.8" 409 inkscape:zoom="2.8"
410 inkscape:cx="-320.60515" 410 inkscape:cx="-176.14086"
411 inkscape:cy="61.509305" 411 inkscape:cy="74.366448"
412 inkscape:document-units="px" 412 inkscape:document-units="px"
413 inkscape:current-layer="layer1" 413 inkscape:current-layer="layer1"
414 showgrid="false" 414 showgrid="false"
@@ -519,7 +519,7 @@
519 inkscape:connector-curvature="0" 519 inkscape:connector-curvature="0"
520 id="path4957" 520 id="path4957"
521 d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" 521 d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z"
522 style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> 522 style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
523 <path 523 <path
524 inkscape:connector-curvature="0" 524 inkscape:connector-curvature="0"
525 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" 525 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
diff --git a/blobfoxlurkaww.svg b/blobfoxlurkaww.svg
index dbd3b04..b9132b6 100644
--- a/blobfoxlurkaww.svg
+++ b/blobfoxlurkaww.svg
@@ -406,9 +406,9 @@
406 borderopacity="1.0" 406 borderopacity="1.0"
407 inkscape:pageopacity="0.0" 407 inkscape:pageopacity="0.0"
408 inkscape:pageshadow="2" 408 inkscape:pageshadow="2"
409 inkscape:zoom="0.98994949" 409 inkscape:zoom="3.959798"
410 inkscape:cx="-484.59336" 410 inkscape:cx="-112.21341"
411 inkscape:cy="141.07734" 411 inkscape:cy="45.415993"
412 inkscape:document-units="px" 412 inkscape:document-units="px"
413 inkscape:current-layer="layer1" 413 inkscape:current-layer="layer1"
414 showgrid="false" 414 showgrid="false"
@@ -431,7 +431,7 @@
431 <dc:format>image/svg+xml</dc:format> 431 <dc:format>image/svg+xml</dc:format>
432 <dc:type 432 <dc:type
433 rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> 433 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
434 <dc:title></dc:title> 434 <dc:title />
435 </cc:Work> 435 </cc:Work>
436 </rdf:RDF> 436 </rdf:RDF>
437 </metadata> 437 </metadata>
@@ -545,7 +545,7 @@
545 inkscape:connector-curvature="0" 545 inkscape:connector-curvature="0"
546 id="path4957" 546 id="path4957"
547 d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z" 547 d="m 26.911905,104.15164 127.999995,9.9437 v 13.87371 H 26.911905 Z"
548 style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> 548 style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
549 <path 549 <path
550 inkscape:connector-curvature="0" 550 inkscape:connector-curvature="0"
551 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" 551 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
diff --git a/blobfoxlurkglare.svg b/blobfoxlurkglare.svg
index d143c14..30efedb 100644
--- a/blobfoxlurkglare.svg
+++ b/blobfoxlurkglare.svg
@@ -267,7 +267,7 @@
267 inkscape:pageopacity="0.0" 267 inkscape:pageopacity="0.0"
268 inkscape:pageshadow="2" 268 inkscape:pageshadow="2"
269 inkscape:zoom="7.919596" 269 inkscape:zoom="7.919596"
270 inkscape:cx="-19.10329" 270 inkscape:cx="-59.825064"
271 inkscape:cy="34.852615" 271 inkscape:cy="34.852615"
272 inkscape:document-units="px" 272 inkscape:document-units="px"
273 inkscape:current-layer="layer1" 273 inkscape:current-layer="layer1"
@@ -432,7 +432,7 @@
432 inkscape:connector-curvature="0" 432 inkscape:connector-curvature="0"
433 id="path4957" 433 id="path4957"
434 d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z" 434 d="m 26.911905,104.15165 127.999995,9.94369 v 13.87371 H 26.911905 Z"
435 style="display:inline;opacity:0.5;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" /> 435 style="display:inline;opacity:1;fill:#f5f8fa;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
436 <path 436 <path
437 inkscape:connector-curvature="0" 437 inkscape:connector-curvature="0"
438 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" 438 style="display:inline;opacity:1;fill:#313131;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.50000012;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill"
diff --git a/blobfoxlurkowo.svg b/blobfoxlurkowo.svg
index 04e9fda..3acb7d5 100644
--- a/blobfoxlurkowo.svg
+++ b/blobfoxlurkowo.svg
@@ -263,8 +263,8 @@
263 inkscape:pageopacity="0.0" 263 inkscape:pageopacity="0.0"
264 inkscape:pageshadow="2" 264 inkscape:pageshadow="2"
265 inkscape:zoom="2.8" 265 inkscape:zoom="2.8"
266 inkscape:cx="-282.27402" 266 inkscape:cx="-82.452591"
267 inkscape:cy="98.285311" 267 inkscape:cy="13.999597"
268 inkscape:document-units="px" 268 inkscape:document-units="px"
269 inkscape:current-layer="layer1" 269 inkscape:current-layer="layer1"
270 showgrid="false" 270 showgrid="false"
@@ -368,7 +368,7 @@
368 inkscape:connector-curvature="0" 368 inkscape:connector-curvature="0"
369 id="path4957" 369 id="path4957"
370 d="m 26.911905,104.15165 128.000005,9.94369 v 13.87371 H 26.911905 Z" 370 d="m 26.9