mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 13:05:11 +00:00
988c11c193
prepare for using zlib instead of stb for compression Unifont not included due to its size... I have plans to load it in a more size-efficient way
7 lines
132 B
Bash
Executable file
7 lines
132 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p compressed
|
|
for i in *.ttf *.otf; do
|
|
echo "$i"
|
|
cat "$i" | zlib-flate -compress=9 > compressed/"$i".zl
|
|
done
|