alias ls='ls --color=auto -haltF'
alias tz='tar -zxvf'
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD/$HOME/~}\007"'
;;
*)
;;
esac
PS1='\[\033[0;32m\]\u@\h \[\033[0;33m\]\w \$\[\033[0m\] '