Do you want to make your terminal look good, then I would suggest you to migrate it from Bash to Zsh.
Migrating from Bash to Zsh:
How to check the shell you are in?
To see your current shell, you should use this command:
$ps -p $$
Installing Zsh:
$sudo apt-get update
$sudo apt-get install zsh
Setting it as default shell:
$chsh -s /bin/zsh
Installing Oh-My-Zsh
Oh My Zsh is an open source, community-driven framework for managing your zsh configuration.
$curl -L http://install.ohmyz.sh |sh
After doing this, you just need to reboot your system. You use the command sudo reboot
Now to migrate from bash to zsh or zsh to bash, you just need to type this command:
exec zsh (for changing from bash to zsh)
exec bash(for changing from zsh to bash)
Source: ThePeaufiner's
Worked like charm! :)
ReplyDeleteThanks :)
ReplyDelete