Skip to content

Instantly share code, notes, and snippets.

View motionbug's full-sized avatar

Rob P motionbug

View GitHub Profile
@motionbug
motionbug / png2icns
Created October 9, 2018 13:51 — forked from djhaskin987/png2icns
Convert PNG file to ICNS file
# Stolen from here: http://stackoverflow.com/a/20703594/850326
#!/bin/sh
export POSIXLY_CORRECT=1
if [ -z "${1}" -o -z "${2}" ]
then
echo "Usage: ${0} <name> <original-png-location>"
fi
name=$1