A menubar app, which shows github contributions chart for the last 7 days, similar to the one on the github's user page:
When clicked it shows some information about the user:
When creating a spoon you can customize how it looks like by passing optional parameters descibed below.
You can change default square icon to any character, like
You can also change colors of icons, by using one of the following color themes:
theme name | screenshot |
---|---|
classic | |
dracula | |
leftpad | |
pink | |
teal |
- install Hammerspoon - a powerful automation tool for OS X
-
Manually:
Download the latest release, and drag Hammerspoon.app from your Downloads folder to Applications.
-
Homebrew:
brew install hammerspoon --cask
-
- download github-contributions.spoon, unzip and double click on a .spoon file. It will be installed under ~/.hammerspoon/Spoons folder.
- open ~/.hammerspoon/init.lua and add the following snippet:
-- github contributions
hs.loadSpoon("github-contributions")
spoon['github-contributions']:setup({
usernames = {'streetturtle', 'fork-my-spoons', 'mgubaidullin'}, -- use one or multiple accounts
-- theme = 'pink',
-- char = '★'
})
spoon['github-contributions']:start()