add 6 7 neomouse

This commit is contained in:
2026-05-16 09:07:24 -05:00
parent 02d78f788c
commit 6c264bad34
6 changed files with 232 additions and 9 deletions

View File

@@ -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-*