> Renat,
>
> Did your default Gentoo install act the same. I..E.. when you login to KDE, GNOME or
> what ever
> your using and when you open the console the bash promt is at its default.
>
> Example:
> bash-2.05b$
>
> Thanks,
> JBanks
I'm pretty sure when I first installed gentoo, the bash prompt looked
correct but after some time, following an upgrade, the bash prompt
changed to its default.
After doing some research, I found something had changed in /etc/profile
(I think) that caused this and the best solution I found best was adding
this to .bash_profile:
[ -f /etc/profile ] && . /etc/profile
# Change the window title of X terminals
case $TERM in
xterm*|rxvt|Eterm|eterm)
PROMPT_COMMAND='echo -ne
"\033]0;[EMAIL PROTECTED]:${PWD/$HOME/~}\007"'
;;
screen)
PROMPT_COMMAND='echo -ne
"[EMAIL PROTECTED]:${PWD/$HOME/~}\033\\"'
;;
esac
eval `dircolors -b /etc/DIR_COLORS`
What I'm still wondering is why my change to PATH isn't taking affect?
Tom
--
[EMAIL PROTECTED] mailing list