added neosnep, neobot, neoraccoon, neodeer, and neobread emojis. also added two scripts

This commit is contained in:
2026-05-14 20:42:59 -05:00
parent 112e6cf142
commit 31cdb16828
234 changed files with 28098 additions and 11 deletions

10
convertor.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# run in the "scalable folder"
find . -type d -print0 | parallel -0 mkdir ./256/{/.} ./2048/{/.}
find -name "*.svg" | parallel inkscape {} --export-height=2048 --export-png=./2048/{.}.png ';' inkscape {} --export-height=256 --export-png=./256/{.}.png
cd ./256
mkdir additional
find additional* -name "*.png" | parallel -m mv {} additional
rm -r additional-*