289 B
289 B
How to import assets?
sudo apt install magickimage
- cd to a directory where there is only .png files (or subdirectories)
- Execute
for PNG in $(find . -type f)
do
convert "$PNG" "${PNG%.png}.xpm"
convert "$PNG" -alpha export "${PNG%.png}.alpha.xpm"
rm "$PNG"
done