20 lines
507 B
Bash
Executable file
20 lines
507 B
Bash
Executable file
#!/bin/bash
|
|
# This script converts raw SVG icons to favicons according to the article:
|
|
# https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs
|
|
#
|
|
# © 2023 Nikita Karamov
|
|
# Licensed under AGPL v3 or later
|
|
|
|
set -euo pipefail
|
|
|
|
if ! type "magick"; then
|
|
echo "ImageMagick ('magick') not found; exiting"
|
|
exit 1
|
|
fi
|
|
|
|
node script/icons.js
|
|
|
|
magick convert public/favicon-32.png public/favicon-16.png public/favicon.ico
|
|
rm public/favicon-32.png public/favicon-16.png
|
|
|
|
echo "Done."
|