Adding macOS Bundle Icon Generator

This commit is contained in:
2026-03-19 11:30:19 +10:00
parent 6729b8db3b
commit 035d529a77
3 changed files with 16 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

+3
View File
@@ -0,0 +1,3 @@
The AppIcon contains artwork that is copyright licensed under Apple, Inc.
The guitar icon is from iOS 17.
No copyright infringement is intended, and this is to be changed before release.
+13
View File
@@ -0,0 +1,13 @@
mkdir AppIcon.iconset
sips -z 16 16 Icon1024.png --out AppIcon.iconset/icon_16x16.png
sips -z 32 32 Icon1024.png --out AppIcon.iconset/icon_16x16@2x.png
sips -z 32 32 Icon1024.png --out AppIcon.iconset/icon_32x32.png
sips -z 64 64 Icon1024.png --out AppIcon.iconset/icon_32x32@2x.png
sips -z 128 128 Icon1024.png --out AppIcon.iconset/icon_128x128.png
sips -z 256 256 Icon1024.png --out AppIcon.iconset/icon_128x128@2x.png
sips -z 256 256 Icon1024.png --out AppIcon.iconset/icon_256x256.png
sips -z 512 512 Icon1024.png --out AppIcon.iconset/icon_256x256@2x.png
sips -z 512 512 Icon1024.png --out AppIcon.iconset/icon_512x512.png
cp Icon1024.png AppIcon.iconset/icon_512x512@2x.png
iconutil -c icns AppIcon.iconset
rm -R AppIcon.iconset