Feeling bored with your regular terminal or do you need that extra cup of customization in your terminal, this one got you covered.
- DaniRuiz - Kali Linux Official UI/UX designer's Pimp My Terminal Blog Post
- Oh My ZSH
- Powerlevel10K
- Nerd Fonts
- Gogh Color Scheme for Terminals
- Linux Terminal
- ZSH installed
1. Headover to this github link of Oh-My-ZSH for the brief installation instructions. Click Here
- Instant Install
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc
Now, the configuration wizard should start automatically, else type p10k configure
.
Install this recommended font called Hack Bold.
Searching on the internet, you'll find plenty of color schemes for your terminal. But the easiest way to apply them is using this tool called Gogh.
bash -c "$(curl -sLo- https://git.io/vQgMr)"
The color scheme we'll be using is the Flat Remix one. Run this command on the terminal,
bash -c "$(curl -sLo- https://git.io/JvvDs)"
else, head over to Pimp my terminal blog post mentioned above to copy the color scheme.
# This is a template; Replace "new-command" and "alias-name"
command -v new-command > /dev/null && alias alias-name='new-command ...'
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias diff='diff --color=auto'
export LESS_TERMCAP_mb=$'\e[1;32m'
export LESS_TERMCAP_md=$'\e[1;32m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_se=$'\e[0m'
export LESS_TERMCAP_so=$'\e[01;33m'
export LESS_TERMCAP_ue=$'\e[0m'
export LESS_TERMCAP_us=$'\e[1;4;31m'
command -v lsd > /dev/null && alias ls='lsd --group-dirs first'
command -v lsd > /dev/null && alias ls='lsd --tree'
- Head over to the Dani Ruiz blog post for more customizations.