Skip to content

Commit 96c20a9

Browse files
authored
Update status bar icons (#575)
* Update Linux icon * Update Mac icon * Update Windows icon * Add default output filename
1 parent d71d3ec commit 96c20a9

12 files changed

+2150
-5007
lines changed

icon/icon_linux.png

-3.47 KB
Loading

icon/icon_linux_hiber.png

-6.33 KB
Loading

icon/icon_mac.png

-1.56 KB
Loading

icon/icon_mac_hiber.png

-1.78 KB
Loading

icon/icon_mac_light.png

-1.54 KB
Loading

icon/icon_mac_light_hiber.png

-1.75 KB
Loading

icon/icon_win.ico

-17.1 KB
Binary file not shown.

icon/icon_win_hiber.ico

0 Bytes
Binary file not shown.

icon/icondarwin.go

+259-825
Large diffs are not rendered by default.

icon/iconlinux.go

+273-1,108
Large diffs are not rendered by default.

icon/iconwin.go

+1,612-3,073
Large diffs are not rendered by default.

icon/make_icon.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ if [ ! -f "$1" ]; then
2424
exit
2525
fi
2626

27-
OUTPUT=iconunix.go
27+
if [ -z "$2" ]; then
28+
OUTPUT="$1.go"
29+
else
30+
OUTPUT=$2
31+
fi
32+
2833
echo Generating $OUTPUT
2934
echo "// +build linux darwin" > $OUTPUT
3035
echo >> $OUTPUT

0 commit comments

Comments
 (0)