Skip to content

Commit

Permalink
Update status bar icons (#575)
Browse files Browse the repository at this point in the history
* Update Linux icon

* Update Mac icon

* Update Windows icon

* Add default output filename
  • Loading branch information
sebromero authored Dec 4, 2020
1 parent d71d3ec commit 96c20a9
Show file tree
Hide file tree
Showing 12 changed files with 2,150 additions and 5,007 deletions.
Binary file modified icon/icon_linux.png
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 icon/icon_linux_hiber.png
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 icon/icon_mac.png
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 icon/icon_mac_hiber.png
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 icon/icon_mac_light.png
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 icon/icon_mac_light_hiber.png
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 icon/icon_win.ico
Binary file not shown.
Binary file modified icon/icon_win_hiber.ico
Binary file not shown.
1,084 changes: 259 additions & 825 deletions icon/icondarwin.go

Large diffs are not rendered by default.

1,381 changes: 273 additions & 1,108 deletions icon/iconlinux.go

Large diffs are not rendered by default.

4,685 changes: 1,612 additions & 3,073 deletions icon/iconwin.go

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion icon/make_icon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ if [ ! -f "$1" ]; then
exit
fi

OUTPUT=iconunix.go
if [ -z "$2" ]; then
OUTPUT="$1.go"
else
OUTPUT=$2
fi

echo Generating $OUTPUT
echo "// +build linux darwin" > $OUTPUT
echo >> $OUTPUT
Expand Down

0 comments on commit 96c20a9

Please sign in to comment.