Tuesday, October 26, 2021

[SOLVED] UBUNTU How to make terminal looks like?

Issue

Simple, how can I make my terminal looks like this https://docs.microsoft.com/en-us/windows/terminal/images/overview.png

On pic, left one, you see how path (user, host, directory) looks like with fore-color. I am interested how to make it.


Solution

I think you're just asking how to set the color of your prompt. One way to do that is:

PS1="\[$(tput setaf 1; tput setb 2)\]\$\[$(tput setaf 9; tput setb 9)\] "


Answered By - William Pursell