I want my own git notifications using the Github API without the browser.
For the moment I will return the data to the terminal. Maybe later I can put a frontend dunst style. The project is still a work in progress. The main idea its to have a small program to subscribe to github user repositories, user profiles and manage all your notifications from the comfort of your terminal. Subscribe to users/projects to get notified when a new repository is created will be possible too.
For the terminal fonts with ligatures like FiraCode are recommended.
To get your notifications:
```bash $ git-tellme # or git-tellme -n â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”┓ ┃ Issue ┃ ┃ Protocol error - Target closed: puppeteer stopped working. ┃ ┃ puppeteer/puppeteer https://github.com/puppeteer/puppeteer/issues/7455 ┃ â”—â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”›
```
To get your repositories:
bash
$ git-tellme -r
â”â”â”â”â”â”â”â”â”â”â”â”â”┓
┃ 398634567 ┃
┃ git-tellme ┃
â”—â”â”â”â”â”â”â”â”â”â”â”â”â”›
To get someone else repositories:
bash
$ git-tellme -ru rylev
â”â”â”â”â”â”â”â”â”â”â”â”â”â”┓
┃ 336591832 ┃
┃ const-utf16 ┃
â”—â”â”â”â”â”â”â”â”â”â”â”â”â”â”›
â”â”â”â”â”â”â”â”â”â”â”â”┓
┃ 27019437 ┃
┃ coreutils ┃
â”—â”â”â”â”â”â”â”â”â”â”â”â”›
```bash $ git-tellme -h git-tellme 0.1.0
USAGE: git-tellme [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information -n, --get-notifications Get Github user notifications -r, --repos Get Github user repositories -s, --subscribe (WIP) -V, --version Prints version information
OPTIONS:
-u, --user
If you want to get your notifications when you open your terminal you can add
git-tellme
to you're ~/.bashrc
, ~/.zshrc
or ~/.config/fish/config.fish
bash
echo 'git-tellme' >> ~/.bashrc
The performance will get better, I promise.
First of all you will need a personal access token from github, how to do get one here.
Once you have that copy it well. You only can see the token one time after its creation.
git-tellme
uses the GitHub API so that token has to be accesible for the whole
system. The best way to do that is with pass
and gpg
.
Here you hace a better explanation but basically you will need to run this commands:
```bash gpg --gen-key
gpg --list-keys
pass init 68214821 # <-- use the pub key to initialize pass
```
then to save your GitHub token:
```bash pass insert -m git-tellme/token # <-- IMPORTANT: the name needs to be git-tellme/token Enter contents of g and press Ctrl+D when finished:
```
To learn more about pass
: https://wiki.archlinux.org/title/Pass
To learn more about gpg
: https://www.gnupg.org/gph/en/manual/c14.html
I know... to much right? This will be easier later, give me time..
First install rustup
+cargo
: https://rustup.rs/
From crates.io:
bash
cargo install git-tellme
From the repository source:
bash
git clone https://github.com/marcelarie/git-tellme
cd git-tellme
echo AUTH_TOKEN='token YOUR_TOKEN_HERE' > .env
cargo install
cargo build --release
PATH=$PATH:`{pwd}`/target/release/git-tellme