Skip to content

Update status bar icons #575

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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