Skip to content

Install

Prerequisites

  • Linux system

Warning

to enable icons, you must install nerd fonts nerdFonts

Installation

Download and install

Linux Terminal
curl -L https://raw.githubusercontent.com/starterTree/starterTree/master/install.sh | bash

Custom install
Linux Terminal
cd /opt 
sudo curl -L "https://github.com/starterTree/starterTree/releases/download/$(basename $(curl -fsSLI -o /dev/null -w %{url_effective} https://github.com/starterTree/starterTree/releases/latest))/starterTree.tar.gz" | sudo tar -xz 
sudo ln -s /opt/starterTree/starterTree /usr/local/bin/st

Update

since version 0.7 you can update with:

Linux Terminal
#update to last versiob
st > --update
#update to precise version
st > --update=v0.7

or go Installation section

Usage

create ~/.config/starterTree/config.yml and see features and example config file

and >st

or create a config file anywere and st /tmp/config.file

and you can use the alias command to encapsulate the config file: alias t="st /tmp/myconfig.yml" or to manage several different configurations: alias toto1="st /other/myconfig.yml" alias toto2="st /other/anOtherconfig.yml" or run starterTree via bind: bind -x '"\C-p":st'

you need press key space or tab to use autocomplete

Back to top