summaryrefslogtreecommitdiff
path: root/do_gen_favicon
diff options
context:
space:
mode:
Diffstat (limited to 'do_gen_favicon')
-rwxr-xr-xdo_gen_favicon19
1 files changed, 0 insertions, 19 deletions
diff --git a/do_gen_favicon b/do_gen_favicon
deleted file mode 100755
index a7bbc66..0000000
--- a/do_gen_favicon
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-SIZES="16 32 64 128 256"
-
-[[ -z $1 ]] && exit 1;
-temp_dir=$(mktemp -d /tmp/favicon.XXXXXXXXXX)
-
-for size in $SIZES
-do
- convert "$1" \
- -depth 8 \
- -background transparent \
- -flatten \
- -resize \
- "${size}x${size}" \
- "$temp_dir/$size.png"
-done
-
-convert "$temp_dir/*" favicon.ico