
#### Kusa is a simple CLI tool that works on any platform and displays GitHub contribution graphs.
$ brew tap Ryu0118/Kusa
$ brew install kusa
or download the appropriate file for your device from releases
To build and run Kusa on your machine put your GitHub Personal Access Token as the "GITHUB_ACCESS_TOKEN" variable (src/main.rs, line 9), your token does not need any scopes.
static GITHUB_ACCESS_TOKEN : &str = "GITHUB_ACCESS_TOKEN";
then run this
$ cargo run <github user name>
Go to github developer settings.
Set the expiration date to "No Expiration".
Click "Generate Token" and then copy the token it generates.
kusa --helpUSAGE:
kusa <github user name>
ARGS:
<github user name>
OPTIONS:
-h, --help Print help information
-V, --version Print version information
kusa Ryu0118