Merge branch 'master' of ssh://feistymeow.org/feisty_meow
[feisty_meow.git] / scripts / examples / feisty_meow_startup / bashrc_user
1
2 # in addition to the .bashrc code that the operating system gives you,
3 # you can add this file to your ~/.bashrc if you want the feisty_meow scripts
4 # to be loaded up automatically.
5 #
6 # this is for normal users, not the root user!
7
8 # note: it is useful to set your own NAME variable to identify who you are.
9 # the feisty_meow scripts will set up a bogus one for you otherwise.  in your home
10 # directory's .bashrc, you could add something like this, for example:
11 #   export NAME='Doodmodeus Q. Nornberton'
12
13 # don't bother running our stuff for a dumb terminal since any echo
14 # can mess with an sftp connection, apparently.
15 if [ ${TERM} != "dumb" ]; then
16   # sets up the feisty_meow scripts, using the default locations for all scripts.
17   source $HOME/feisty_meow/scripts/core/profile.sh
18 fi
19