Please bear with us as we work to restore functionality to dotfiles.org.
gufo
/.profile
# Gufo's profile
# http://gufo.dontexist.org
# version 0.0.1 2007/01/10
# This one just sets the terminal title and the command prompt.
# For machine-specific settings it sources ~/.profile_local
THISHOST="Hostname"
#Colors
WHITE="\[\e[1;37m\]"
BOLD_GRAY="\[\e[0;37m\]"
GRAY="\[\e[1;30m\]"
BOLD_CYAN="\[\e[0;36m\]"
CYAN="\[\e[1;36m\]"
BOLD_PURPLE="\[\033[0;35m\]"
PURPLE="\[\033[1;35m\]"
BOLD_BLUE="\[\e[0;34m\]"
BLUE="\[\e[1;34m\]"
BOLD_YELLOW="\[\e[0;33m\]"
YELLOW="\[\e[1;33m\]"
BOLD_GREEN="\[\033[0;32m\]"
GREEN="\[\033[1;32m\]"
BOLD_RED="\[\e[0;31m\]"
RED="\[\e[1;31m\]"
#no color
NC="\[\e[0m\]"
# Terminal prompt
PS1="$BOLD_RED[\h] $BOLD_GREEN\u $BOLD_YELLOW\w \\$ $NC"
# If this is an xterm set the title bar
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;[$THISHOST]: ${PWD}\007"'
;;
*)
;;
esac
# Source local options (alias and path)
if [ -e ~/.profile_local ]; then
. ~/.profile_local
fi