View Single Post
Old 29th August 2008
BSDKaffee's Avatar
BSDKaffee BSDKaffee is offline
Real Name: Jason Hale
Coffee Addict
 
Join Date: May 2008
Location: Wintersville, Ohio
Posts: 212
Default

They won't be created automatically, you need to do that yourself. I'll give you my very plain ~/.bash_profile as a starting point:
Code:
export BLOCKSIZE=K
export CLICOLOR=yes
export EDITOR=ee
export PAGER=more
export PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin
export PS1="[\w]$ "

[ -x /usr/games/fortune ] && /usr/games/fortune freebsd-tips
You could also make a symlink to ~/.profile if you just want to use the profile for sh.

Now for my xterm (Konsole) I use ~/.bashrc:
Code:
export GTK2_RC_FILES=$HOME/.gtkrc-2.0
export MAIL_AGENT=$HOME/src/scripts/sendprkmail.sh

function tranquil_thoughts_prompt
{
local WHITE="\[\033[1;37m\]"
local BRIGHTGREEN="\[\033[1;32m\]"
local GREEN="\[\033[0;32m\]"
local CYAN="\[\033[0;36m\]"

PS1="${WHITE}.oO(${CYAN}\w${WHITE})Oo.${BRIGHTGREEN}\$ "
}

tranquil_thoughts_prompt
Reply With Quote