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:
2026-05-16 07:55:37 -05:00
parent a26d4b1e2e
commit 02d78f788c
11 changed files with 252 additions and 290 deletions

7
scripts/zip.sh Normal file
View 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 -