This is the thread in which you can post your bashrc file, give us an idea what sort of bash prompt customization you've got going.
You can check out my bashrc here.
If you're too lazy to click on a link, then here is the code for my bash prompt:
I showed you mine, you show me yours
You can check out my bashrc here.
If you're too lazy to click on a link, then here is the code for my bash prompt:
Code:
function prompt {
Black="\e[30m"
Red="\e[31m"
Green="\e[32m"
LightGreen="\e[32;1m"
Blue="\e[34m"
LightBlue="\e[34;1m"
NC="\e[0m" # No Color
PS1="\[$LightGreen\033(0\154\033(B\][\[\033(0\161\161\033(B$Green\][\[$Red\]\u@\h\[$Green\]]\[\033(0\161\033(B\][\[$Red\]\w\[$Green\]]\[\033(0\161\033(B\][\[$Red\]\!\[$Green\]]\[\033(0\161\161\033(B\]]\n\[$LightGreen\033(0\155\161\033(B$Green\][\[$Red\]\#\[$Green\]]\[\033(0\161\033(B\][\[$Red\]\$\[$Green\]]\[\033(0\161\161\033(B\][\[$NC\]"
PS2="> "
}
prompt
I showed you mine, you show me yours