tars and zips will now just be in releases, fixed an issue with the eye on a couple emojis, put scripts into their own directory
This commit is contained in:
10
scripts/convertor.sh
Normal file
10
scripts/convertor.sh
Normal 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-*
|
||||
3
scripts/preview.sh
Normal file
3
scripts/preview.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
magick montage * -shadow -tile 5x -background snow4 $(date +"%Y.%m.%d").gif
|
||||
7
scripts/zip.sh
Normal file
7
scripts/zip.sh
Normal file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
~/.cargo/bin/emoji-gen local --group neomouse --folder ./256/neomouse/
|
||||
mv generated_emojis.zip neomouse-$(date +"%Y.%m.%d").zip
|
||||
~/.cargo/bin/emoji-gen local --group neomouse --folder ./256/neomouse-additional/
|
||||
mv generated_emojis.zip neomouse-additional-$(date +"%Y.%m.%d").zip
|
||||
cd ./256/neomouse/ && tar -czf ../../neomouse-$(date +"%Y.%m.%d").tar.gz * && cd -
|
||||
cd ./256/neomouse-additional/ && tar -czf ../../neomouse-additional-$(date +"%Y.%m.%d").tar.gz * && cd -
|
||||
Reference in New Issue
Block a user