Simple tray application for getting GitHub notifications
macOS | |
Windows | |
Linux |
Scenario
- I'm a maintainer or active watcher of some repositories at GitHub
- I want to react to issues quickly
- I prefer a status based humble info rather than aggressive email or pop-ups
Install from .dmg and run as any other application.
Just run github-notify.exe
.
go get github.com/koltyakov/github-notify
nohup github-notify >/dev/null 2>&1 &
make build-darwin # can be build in macOS only
make build-win
make build-linux # can be build Linux only
Prerequisites
The project uses these major dependencies and inherits their prerequisites:
Due to the nature of systray
package, the build for macOS can be done in a Mac, a linux build only on a Linux machine. Platform specific prerequisites required.
Windows cross build can be done from any platform.
make start
make bundle-darwin
As a result, the .dmg
installer image should be found in ./dist
folder.
docker build . -t github-notify
docker run -v $PWD/bin:/build/bin -it github-notify make build-linux