feat: ultimate ketchup ending
This commit is contained in:
parent
840d0b31e9
commit
14bcb02d5a
48 changed files with 6101 additions and 2320 deletions
|
|
@ -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
10
dev/import_assets_text_50px.sh
Executable 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue