Display feedback of terminal in the π Touchbar
Currently it shows:
- F1 - Current git repo status β‘οΈ / β
- F2 - Push to origin branch (git push origin [branch]) πΌ
- F3 - Pull from origin branch (git pull origin [branch]) π½
- F4 - Current git branch, press to display all branches and switch between them π
Into iterm2: Go into View -> Customize Tool Bar...
and drag & drop the Fn
module
Clone the repo in your plugins directory:
$ cd ${ZSH_CUSTOM1:-$ZSH/custom}/plugins
$ git clone https://github.com/iam4x/zsh-iterm-touchbar.git
Then add the plugin into your ~/.zshrc
:
plugins=(... zsh-iterm-touchbar)
Add the following snippet ~/.zshrc
after the line antigen use oh-my-zsh:
antigen theme https://github.com/iam4x/zsh-iterm-touchbar
Add the following line to your ~/.zshrc
where you're adding your other zsh plugins:
zgen load iam4x/zsh-iterm-touchbar
ENV variables for git icons:
GIT_UNCOMMITTED="+"
GIT_UNSTAGED="!"
GIT_UNTRACKED="?"
GIT_STASHED="$"
GIT_UNPULLED="β£"
GIT_UNPUSHED="β‘"
ENV variables to enable or disable yarn:
YARN_ENABLED=true