feat: ultimate ketchup ending

This commit is contained in:
mcolonna 2024-04-21 15:52:23 +02:00
parent 840d0b31e9
commit 14bcb02d5a
48 changed files with 6101 additions and 2320 deletions

View file

@ -17,7 +17,7 @@ highlight berC cterm=bold ctermfg=yellow
syntax match berC /C/
highlight berE cterm=bold ctermfg=green
syntax match berE /E/
syntax match berE /[EU]/
highlight berF cterm=bold ctermfg=red
syntax match berF /F/

10
dev/import_assets_text_50px.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
for PNG in $(find . -type f -name "*.png")
do
# resize
convert "$PNG" -resize x50 "$PNG"
# extract color and alpha
convert "$PNG" -negate -alpha opaque "${PNG%.png}.xpm"
convert "$PNG" -alpha extract "${PNG%.png}.alpha.xpm"
rm "$PNG"
done