Skip to content

Commit

Permalink
Add new Big Sur-style rectangle icon for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jan 10, 2023
1 parent 56ab083 commit ec0aa1e
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 0 deletions.
77 changes: 77 additions & 0 deletions build/icon-macos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified build/icon.icns
Binary file not shown.
39 changes: 39 additions & 0 deletions scripts/generate-icon-macos.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#!/bin/bash

set -e
cd "$(dirname "$0")/.."

if [ "$(uname -s)" != Darwin ]; then
echo "This script only runs on macOS since it needs 'iconutil'"
exit 1
fi

if ! command -v inkscape &> /dev/null; then
echo "Please make sure to have 'inkscape' on your PATH!"
exit 1
fi

input_svg="build/icon-macos.svg"
tmp_dir="$(mktemp -dt zulip-icon)"
output_dir="$tmp_dir.iconset"
output_icns="build/icon.icns"

mv "$tmp_dir" "$output_dir"

trap "rm -rf '$output_dir'" EXIT

echo "==> Generating icons from $input_svg..."

for size in 16 32 64 128 256 512 1024; do
echo "Generating icon of size $size..."
icon_prefix="icon_${size}x${size}"
inkscape -o "$output_dir/$icon_prefix.png" -w $size "$input_svg"
inkscape -o "$output_dir/$icon_prefix@2x.png" -w $((size * 2)) "$input_svg"
done

echo "==> Updating ICNS icons..."

for icns in "${output_icns[@]}"; do
echo "Updating $icns..."
iconutil -c icns -o "$icns" "$output_dir"
done

0 comments on commit ec0aa1e

Please sign in to comment.