# .bashrc

# User specific environment and startup programs
# ----------------------------------------------

# Make Terminal Tabs Recognizable
# --------------------------------------
# http://most-advantageous.com/optimal-layout/support.html

case $TERM in
	xterm*)
		PS1="\[\033]0;\w\007\]bash\$ "
		;;
	*)
		PS1="bash\$ "
		;;
esac
					

# Add PATH for calibre command line interface
# -------------------------------------------
# export PATH="/Applications/eBook\ Applications/calibre.app/Contents/MacOS":$PATH

# Add PATH for Brett Terpstra utilities
# -------------------------------------
# export PATH="/Applications/Utilities/Brettterpstra":$PATH
# export PATH="/Applications/Utilities/Brettterpstra/vitag-master":$PATH

# git-completion
# --------------
source /Users/Stuart/.git-completion.sh

# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
# -------------------------------------------------------------------------------
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
# export PATH="$HOME/.rvm/bin":$PATH
