Hello all, I searched this forum, but the thread I found didn't help.
I cannot get my .bashrc to function when I start konsole, without executing the following command:
Code:
wil@subG:~$ . .bashrc
Here are the contents of my .bashprofile :
Code:
#.bash_profile
#
# Source .bashrc
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
And here is the contents of my .bashrc :
Code:
#.bashrc
#
# Add bin to path
export PATH="$PATH:$HOME/bin"
# Dynamic resizing
shopt -s checkwinsize
# Custom prompt
PS1='\[\033[0;31m\]\u\[\033[1;37m\]@\[\033[1;34m\]\h\[\033[0;31m\] | \[\033[1;37m\]\w\[\033[0;31m\] | \[\033[1;37m\]\T\n\\$'
# Add color
eval `dircolors -b`
Can anyone see where I have made an error?