add favicon

This commit is contained in:
Thomas Dedek
2021-04-13 21:12:17 +02:00
parent f884e605db
commit eab9cd7cbc
3 changed files with 9 additions and 0 deletions

9
src/favicon-create.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env sh
# Create based on the PNG image.
set -o nounset # set -u : exit the script if you try to use an uninitialised variable
set -o errexit # set -e : exit the script if any statement returns a non-true return value
#set -o verbose # set -v : Prints shell input lines as they are read.
#set -o xtrace # set -x : Print command traces before executing command
convert -resize x16 -gravity center -flatten -colors 256 -background transparent \
"favicon.png" "favicon.ico"

BIN
src/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB