summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2020-05-13 20:19:15 -0400
committerJoseph Donofry <joedonofry@gmail.com>2020-05-13 20:19:15 -0400
commitff7468e6d567db73b490a9e728138bf3faefc3eb (patch)
tree477befcb460c7048f944e69f2e25889165b00851 /scripts
parentdfb76c693dca688ce8295d2b43348c4fdddae2ef (diff)
Update emoji picker and translations
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/generate_icns.sh38
1 files changed, 27 insertions, 11 deletions
diff --git a/scripts/generate_icns.sh b/scripts/generate_icns.sh
index 98a5e68f..9563b704 100755
--- a/scripts/generate_icns.sh
+++ b/scripts/generate_icns.sh
@@ -9,19 +9,35 @@ set -eu
INPUT=$1
OUTPUT=nheko
+filename=$(basename -- "$1")
+extension="${filename##*.}"
+
mkdir ${OUTPUT}.iconset
-sips -z 16 16 "${INPUT}" --out ${OUTPUT}.iconset/icon_16x16.png
-sips -z 32 32 "${INPUT}" --out ${OUTPUT}.iconset/icon_16x16@2x.png
-sips -z 32 32 "${INPUT}" --out ${OUTPUT}.iconset/icon_32x32.png
-sips -z 64 64 "${INPUT}" --out ${OUTPUT}.iconset/icon_32x32@2x.png
-sips -z 128 128 "${INPUT}" --out ${OUTPUT}.iconset/icon_128x128.png
-sips -z 256 256 "${INPUT}" --out ${OUTPUT}.iconset/icon_128x128@2x.png
-sips -z 256 256 "${INPUT}" --out ${OUTPUT}.iconset/icon_256x256.png
-sips -z 512 512 "${INPUT}" --out ${OUTPUT}.iconset/icon_256x256@2x.png
-sips -z 512 512 "${INPUT}" --out ${OUTPUT}.iconset/icon_512x512.png
-
-cp "${INPUT}" ${OUTPUT}.iconset/icon_512x512@2x.png
+if [ extension = "svg" ]; then
+ rsvg-convert -h 16 "${INPUT}" > ${OUTPUT}.iconset/icon_16x16.png
+ rsvg-convert -h 32 "${INPUT}" > ${OUTPUT}.iconset/icon_16x16@2x.png
+ rsvg-convert -h 32 "${INPUT}" > ${OUTPUT}.iconset/icon_32x32.png
+ rsvg-convert -h 64 "${INPUT}" > ${OUTPUT}.iconset/icon_32x32@2x.png
+ rsvg-convert -h 128 "${INPUT}" > ${OUTPUT}.iconset/icon_128x128.png
+ rsvg-convert -h 256 "${INPUT}" > ${OUTPUT}.iconset/icon_128x128@2x.png
+ rsvg-convert -h 256 "${INPUT}" > ${OUTPUT}.iconset/icon_256x256.png
+ rsvg-convert -h 512 "${INPUT}" > ${OUTPUT}.iconset/icon_256x256@2x.png
+ rsvg-convert -h 512 "${INPUT}" > ${OUTPUT}.iconset/icon_512x512.png
+ rsvg-convert -h 1024 "${INPUT}" > ${OUTPUT}.iconset/icon_512x512@2x.png
+else
+ sips -z 16 16 "${INPUT}" --out ${OUTPUT}.iconset/icon_16x16.png
+ sips -z 32 32 "${INPUT}" --out ${OUTPUT}.iconset/icon_16x16@2x.png
+ sips -z 32 32 "${INPUT}" --out ${OUTPUT}.iconset/icon_32x32.png
+ sips -z 64 64 "${INPUT}" --out ${OUTPUT}.iconset/icon_32x32@2x.png
+ sips -z 128 128 "${INPUT}" --out ${OUTPUT}.iconset/icon_128x128.png
+ sips -z 256 256 "${INPUT}" --out ${OUTPUT}.iconset/icon_128x128@2x.png
+ sips -z 256 256 "${INPUT}" --out ${OUTPUT}.iconset/icon_256x256.png
+ sips -z 512 512 "${INPUT}" --out ${OUTPUT}.iconset/icon_256x256@2x.png
+ sips -z 512 512 "${INPUT}" --out ${OUTPUT}.iconset/icon_512x512.png
+
+ cp "${INPUT}" ${OUTPUT}.iconset/icon_512x512@2x.png
+fi
iconutil -c icns ${OUTPUT}.iconset