0

My friend has installed some kind of a shell for terminal and on that machine i can see in which branch I am at the moment. It looks like this:

enter image description here

And now i want to install that on another machine but i don't know the name of it. I hope someone will recognize it from the screenshot.

lewis4u
  • 5,046

1 Answers1

2

It's actually a zsh shell

install it with apt-get

sudo apt-get install zsh

download the theme

wget -O ~/.zshrc https://raw.githubusercontent.com/grml/grml-etc-core/master/etc/zsh/zshrc

change the default shell (please note that you will lose your aliases with this)

chsh -s /bin/zsh

update for aliases

if you have aliases in a separate file in your home/<user_name> folder then append this to the end of the .zshrc file in your home/<user_name> folder

if [ -f ~/.aliases_file ]; then
     . ~/.aliases_file
fi
lewis4u
  • 5,046