diff options
author | zapashcanon <leo@ndrs.fr> | 2019-04-24 01:55:05 +0200 |
---|---|---|
committer | zapashcanon <leo@ndrs.fr> | 2019-04-24 01:55:05 +0200 |
commit | eee6f2de31bb01bda96597a5236fc4b2dc668ff4 (patch) | |
tree | cdbf798b78024df70262971c6858d1342ea8d019 /scripts | |
parent | Update olm repo to new location. (diff) | |
download | nheko-eee6f2de31bb01bda96597a5236fc4b2dc668ff4.tar.xz |
improve shell scripts and update .gitignore
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/archive.sh | 4 | ||||
-rwxr-xr-x | scripts/generate_icns.sh | 26 |
2 files changed, 17 insertions, 13 deletions
diff --git a/scripts/archive.sh b/scripts/archive.sh index 48d913d4..f8b1a82c 100755 --- a/scripts/archive.sh +++ b/scripts/archive.sh @@ -1,4 +1,6 @@ -#!/bin/bash -e +#!/bin/sh + +set -eu PREFIX=$(basename "$(pwd -P)") { diff --git a/scripts/generate_icns.sh b/scripts/generate_icns.sh index 39d7ac77..98a5e68f 100755 --- a/scripts/generate_icns.sh +++ b/scripts/generate_icns.sh @@ -1,4 +1,6 @@ -#!/bin/bash +#!/bin/sh + +set -eu # # Manually generate icon set for MacOS. @@ -9,17 +11,17 @@ OUTPUT=nheko 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 +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 iconutil -c icns ${OUTPUT}.iconset |