Please bear with us as we work to restore functionality to dotfiles.org.
alias ls='ls --color=auto -haltF'
alias tz='tar -zxvf'
#PS1='\[\033[0;32m\]\u@\h \[\033[1;33m\]\w \$\[\033[0m\] '
# 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
# Prompt
S='\[\033[1;35m\]'
A='\[\033[1;32m\]'
U='\[\033[1;34m\]'
N='\[\033[00m\]'
W='\[\033[1;33m\]'
H='\[\033[1;36m\]'
PS1="${U}\u${A}@${H}\h ${W}\w ${S}\$ ${N}"