/github-notify

Simple MacOS app to alert you when you have unread GitHub notifications

Primary LanguageSwiftMIT LicenseMIT

icon GithubNotify

It sits in your menubar and changes color when you have unread github notifications.

Quick install

Grab the latest release, unzip, and run GithubNotify.

Building from source

Requires Carthage.

Register a new GitHub OAuth application with permissions to read notifications. Fields can be filled out however you'd like, but make sure the callback URL is set to github-notify://oauth

git clone git@github.com:erik/github-notify.git && cd github-notify/

carthage update

# Remember to fill these in from the OAuth application you set up before.
echo "GITHUB_OAUTH_ID=[your_github_oauth_client_id]" > .secrets
echo "GITHUB_OAUTH_SECRET=[your_github_oauth_secret]" >> .secrets

# If you want to build from the command line:
xcodebuild
open build/Release/GithubNotify.app

# Or if you want to open xcode and build there:
open GithubNotify.xcodeproj