diff --git a/2048/neomouse/neomouse_6_7.png b/2048/neomouse/neomouse_6_7.png new file mode 100644 index 0000000..a57b499 Binary files /dev/null and b/2048/neomouse/neomouse_6_7.png differ diff --git a/256/neomouse/neomouse_6_7.png b/256/neomouse/neomouse_6_7.png new file mode 100644 index 0000000..4dc8609 Binary files /dev/null and b/256/neomouse/neomouse_6_7.png differ diff --git a/README.md b/README.md index 0b60f76..9b66f8c 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ ⚠️ There are mice ⚠️ -Created by wep -Now maintained by meeee :3 (Asterism) +Created by wep +Now maintained by meeee :3 (Asterism) version 2026.05.14 @@ -18,4 +18,4 @@ version 2026.05.14 ### Mastodon - Import the tar.gz files with the Admin CLI \ No newline at end of file + Import the tar.gz files with the Admin CLI diff --git a/scalable/neomouse/neomouse_6_7.svg b/scalable/neomouse/neomouse_6_7.svg new file mode 100644 index 0000000..c83dc05 --- /dev/null +++ b/scalable/neomouse/neomouse_6_7.svg @@ -0,0 +1,218 @@ + + + +76 diff --git a/scripts/convertor.sh b/scripts/convertor.sh index ea0ddfe..e418d77 100644 --- a/scripts/convertor.sh +++ b/scripts/convertor.sh @@ -2,9 +2,14 @@ # run in the "scalable folder" +# create 256 and 2048 folders and then copy the existing folder structure find . -type d -print0 | parallel -0 mkdir ./256/{/.} ./2048/{/.} + +# convert svgs to png find -name "*.svg" | parallel inkscape {} --export-height=2048 --export-png=./2048/{.}.png ';' inkscape {} --export-height=256 --export-png=./256/{.}.png + +# in the 256 folder find all pngs in additonal- folders and move them into neomouse-additional cd ./256 -mkdir additional -find additional* -name "*.png" | parallel -m mv {} additional +mkdir neomouse-additional +find additional* -name "*.png" | parallel -m mv {} neomouse-additional rm -r additional-* diff --git a/scripts/zip.sh b/scripts/zip.sh index 3c0f288..3c56e05 100644 --- a/scripts/zip.sh +++ b/scripts/zip.sh @@ -1,7 +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 + +# run in the base folder +~/.cargo/bin/emoji-gen local --group neomouse --folder ./256/neomouse/ -o neomouse-$(date +"%Y.%m.%d").zip +~/.cargo/bin/emoji-gen local --group neomouse-additional --folder ./256/neomouse-additional/ -o 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 -