From 4a5ddfa248590e2a50d58aacc61232518b4d5642 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Fri, 15 Mar 2024 14:54:08 -0300 Subject: [PATCH] Remove bin/build-favicons (not needed anymore) --- bin/build-favicons | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100755 bin/build-favicons diff --git a/bin/build-favicons b/bin/build-favicons deleted file mode 100755 index 08cf824..0000000 --- a/bin/build-favicons +++ /dev/null @@ -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