Skip to content

Instantly share code, notes, and snippets.

View 2blon9's full-sized avatar

2BLON9 2blon9

View GitHub Profile
@2blon9
2blon9 / convert-png-to-icns.sh
Last active February 7, 2023 20:04
This script can be used for converting png file to icns(MacOS)
#!/bin/sh
# Install `imagemagick` first.
# brew install imagemagick
ICONSETNAME=$1
mkdir $ICONSETNAME.iconset
cp $ICONSETNAME.png $ICONSETNAME.iconset/
cd $ICONSETNAME.iconset
convert -resize 16x16 ../$ICONSETNAME.png icon_16x16.png