With Kubernetes prompt 😎
-
Install dependency packages
# Linux $ apt-get update $ apt-get install \ curl feh xclip \ ngrep pv openssl -y $ curl -qo /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 > /dev/null 2>&1 $ chmod +x /usr/local/bin/yq # MacOS # install homebrew $ brew install yq ngrep openssl pv curl
-
Install dotfiles
$ curl https://raw.githubusercontent.com/veerendra2/dotfiles/master/install | bash $ bash
This configuration is need when latest bash installed from homebrew package manager.
-
Change default
shell
tobash
$ bash -c 'echo $(brew --prefix)/bin/bash | sudo tee -a /etc/shells' $ chsh -s $(brew --prefix)/bin/bash
-
Update
bash
locationcommand
in iTerm profiles like below.NOTE: You can the get
bash
binary location by runningecho $(brew --prefix)/bin/bash
. For apple silicon it should be/opt/homebrew/bin/bash
and for intel/usr/local/bin/bash