#this is the .bashrc file:
#yellow prompt:
#PS1='\[[40;33;1m\]\u@\h\n[\w]\$\[[00m\[ '
#yellow on blue
#PS1='\[[44;33;1m\]\u@\h\]\n[\w]\$\[[00m\[ '
# many nice colors:
SKT1=`tty | cut -d"/" -f3-`
C1='[0;32m'
C2='[0;35m'
C3='[0m'
C4='[0;31m'
C5='[0;33m'
C6='[0;36m'

PS1='\[$C1\][\[$C2\]<\[$C3\]$SKT1\[$C2\]>\[$C3\] \[$C4\]\u\[$C5\]@\[$C4\]\h\[$C3\] \[$C6\]`pwd`\[$C1\]]\[$C3\]\\$ '

if [ "$TERM" = "xterm" -o "$TERM" = "xterm-color" ]; then
	PS1='\[\033]2;[<$SKT1> \u@\h `pwd`]\007\]\[$C1\][\[$C2\]<\[$C3\]$SKT1\[$C2\]>\[$C3\] \[$C4\]\u\[$C5\]@\[$C4\]\h\[$C3\] \[$C6\]`pwd`\[$C1\]]\[$C3\]\\$ '
#	PS1="\033]2;\u@\h:\w\007bash$ "
fi
#end of many nice colors
PAGER=less
export PAGER
alias l='ls -F --color=tty'
alias ll='ls -al --color=tty'
alias ls='ls -F --color=tty'
# define colors for different file names:
LS_COLORS='*.fm=44;31;1:*.ppt=44;33;1:*.doc=44;33;1:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.mpg=01;37:*.avi=01;37:*.gl=01;37:*.dl=01;37:'
export LS_COLORS
