gorilla cli

This has become a must have for me; first install it.

sudo apt-get pip3

then additions to ~/.bashrc

# path for python
PATH="$PATH;/home/dnajd/.local/bin"

# gorilla cli
alias g="gorilla"

SSH

Always missing the agent. Add this to ~/.bashrc

# ssh agent
eval $(ssh-agent -s)

rbenv

To install ruby stuff

git clone https://github.com/rbenv/rbenv.git ~/.rbenv
git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ruby-build

custom prompt

The only way to have your prompt look

PS1='\w $ '