Please bear with us as we work to restore functionality to dotfiles.org.
Completely resets PATH. Searches MacPorts in /opt/local/bin before anything else.
Bash profile: sets prompt, cd's to Desktop.
PS1="\w % "
PATH="/opt/local/bin:/usr/local/bin:/bin:/sbin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/local/mysql/bin"
export PATH
# fixes quotes problem (esp with tw.py)
set +H
cd ~/Desktop
PATH="${PATH}:~/tw"
# Adds the airport utility to the path.
PATH="${PATH}:/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources"
# Adds MPlayer to the path.
PATH="${PATH}:/Applications/MPlayer.app/Contents/Resources/mplayer.app/Contents/MacOS"
# Adds LaTeX to the path.
PATH="${PATH}:/Library/TeX/Distributions/TeXLive-2008-Basic.texdist/Contents/Programs/i386"
# Setting PATH for MacPython 2.5
# The orginal version is saved in .profile.pysave
PATH="${PATH}:/Library/Frameworks/Python.framework/Versions/Current/bin"
export PATH