jeffo
05-03-2005, 01:17 PM
ok here is what i did to customize my terminal settings. open up a terminal window and that should dump you right in your home dir.
type:
pico .bash_profile
then hit return, this will open up pico and an empty file. I put this in that file and then saved my changes (this changes my prompt to what i like too):
# ~/.bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
PS1='-----------------------------\n\n\h(\u):\w \n\d \t (-\#-) $ '
then i created a .bashrc file by typing:
pico .bashrc
and then putting my alias' and what not in that file. logging out and back in will reload the files, or you should be able to type:
source .bash_profile
good luck.
type:
pico .bash_profile
then hit return, this will open up pico and an empty file. I put this in that file and then saved my changes (this changes my prompt to what i like too):
# ~/.bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
PS1='-----------------------------\n\n\h(\u):\w \n\d \t (-\#-) $ '
then i created a .bashrc file by typing:
pico .bashrc
and then putting my alias' and what not in that file. logging out and back in will reload the files, or you should be able to type:
source .bash_profile
good luck.
