Created
December 18, 2017 12:50
-
-
Save carlosypunto/5e622b4f669bc4e16d7f1fcd01a09aa1 to your computer and use it in GitHub Desktop.
Function to quickly create an application icon from 1024px master file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mkicns() { | |
if [[ -z "$@" ]]; then | |
echo "Input file missing" | |
else | |
filename=${1%.*} | |
mkdir $filename.iconset | |
sips -z 16 16 $1 --out $filename.iconset/icon_16x16.png | |
sips -z 32 32 $1 --out $filename.iconset/[email protected] | |
sips -z 32 32 $1 --out $filename.iconset/icon_32x32.png | |
sips -z 64 64 $1 --out $filename.iconset/[email protected] | |
sips -z 128 128 $1 --out $filename.iconset/icon_128x128.png | |
sips -z 256 256 $1 --out $filename.iconset/[email protected] | |
sips -z 256 256 $1 --out $filename.iconset/icon_256x256.png | |
sips -z 512 512 $1 --out $filename.iconset/[email protected] | |
sips -z 512 512 $1 --out $filename.iconset/icon_512x512.png | |
cp $1 $filename.iconset/[email protected] | |
iconutil -c icns $filename.iconset | |
rm -r $filename.iconset | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment