Remove bin/build-favicons (not needed anymore)

This commit is contained in:
0x1eef 2024-03-15 14:54:08 -03:00
parent c95da7197c
commit 4a5ddfa248

View file

@ -1,16 +0,0 @@
#!/bin/sh
sizes="16x16 32x32 48x48 64x64 128x128 256x256"
for size in ${sizes}; do
convert src/favicon.svg \
-resize ${size} \
-background none \
-fuzz 8% \
-mattecolor "#FFFFFF" \
-alpha set \
-channel RGBA \
-fill none \
-opaque white \
-gravity center \
-extent ${size} \
png32:src/favicon-${size}.png
done