-
Notifications
You must be signed in to change notification settings - Fork 42
/
makeicon.sh
executable file
·22 lines (21 loc) · 1.21 KB
/
makeicon.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash
# Make .icns file from mozilla's firefox svg icon asset (CC-BY-SA 3.0)
# Prereqs: curl, inkscape and pngcrush (brew cask install inkscape && brew install pngcrush)
if [ ! -f firefox-logo.svg ]; then
curl -L -O http://design.firefox.com/product-identity/firefox/firefox/firefox-logo.svg
fi
mkdir firefox.iconset
inkscape -z -e $(pwd)/firefox.iconset/icon_32x32.png -w 32 -h 32 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/icon_32x32.png
inkscape -z -e $(pwd)/firefox.iconset/[email protected] -w 64 -h 64 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/[email protected]
inkscape -z -e $(pwd)/firefox.iconset/icon_128x128.png -w 128 -h 128 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/icon_128x128.png
inkscape -z -e $(pwd)/firefox.iconset/[email protected] -w 256 -h 256 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/[email protected]
inkscape -z -e $(pwd)/firefox.iconset/icon_512x512.png -w 512 -h 512 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/icon_512x512.png
inkscape -z -e $(pwd)/firefox.iconset/[email protected] -w 1024 -h 1024 $(pwd)/firefox-logo.svg
pngcrush -ow firefox.iconset/[email protected]
iconutil --convert icns firefox.iconset
rm -rf firefox.iconset