-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcreate-icons.sh
executable file
·38 lines (35 loc) · 1.6 KB
/
create-icons.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
#
# Flowkeeper - Pomodoro timer for power users and teams
# Copyright (c) 2023 Constantine Kulak
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
set -e
# Adapted from https://apple.stackexchange.com/questions/402621/convert-png-image-icon-to-icns-file-macos
cd res
mkdir tmp.iconset
sips -z 16 16 flowkeeper.png --out tmp.iconset/icon_16x16.png
sips -z 32 32 flowkeeper.png --out tmp.iconset/[email protected]
sips -z 32 32 flowkeeper.png --out tmp.iconset/icon_32x32.png
sips -z 64 64 flowkeeper.png --out tmp.iconset/[email protected]
sips -z 128 128 flowkeeper.png --out tmp.iconset/icon_128x128.png
sips -z 256 256 flowkeeper.png --out tmp.iconset/[email protected]
sips -z 256 256 flowkeeper.png --out tmp.iconset/icon_256x256.png
sips -z 512 512 flowkeeper.png --out tmp.iconset/[email protected]
sips -z 512 512 flowkeeper.png --out tmp.iconset/icon_512x512.png
cp flowkeeper.png tmp.iconset/[email protected]
iconutil -c icns tmp.iconset
rm -R tmp.iconset
mv tmp.icns flowkeeper.icns