What seems to have worked. However, I might instead try using the command line instead. See notes is Path Warning folder
.bash_profile
function proml {
case $TERM in
xterm*)
TITLEBAR=’\[\033]0;\u@\h:\w\007\]’
;;
*)
TITLEBAR=””
;;
esac
PS1=”\u: \[\e[32m\]\W\[\e[0m\]\n\[\e[0;31m\]♥ \[\e[0m\]”
}
proml
PATH=”/usr/local/bin:$PATH”
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH=”$PATH:$HOME/.rvm/bin”
# Load RVM into a shell session *as a function*
[[ -s “$HOME/.rvm/scripts/rvm” ]] && source “$HOME/.rvm/scripts/rvm”
.bashrc
PATH=”/usr/local/bin:$PATH”
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH=”$PATH:$HOME/.rvm/bin”
# Load RVM into a shell session *as a function*
[[ -s “$HOME/.rvm/scripts/rvm” ]] && source “$HOME/.rvm/scripts/rvm”