]> arthur.barton.de Git - ConfigScripts.git/blob - user/bash_profile
Updated copyright notice
[ConfigScripts.git] / user / bash_profile
1 #
2 # ~/.bash_profile: executed by bash(1) for login shells.
3 # Written 2003-2008 by Alexander Barton (alex@barton.de)
4 #
5
6 [ -e /tmp/ConfigDebug.$USER ] && echo " >> ~/.bash_profile ..."
7
8 [ -z "$PROFILEREAD" -a -r $HOME/.etc/profile ] && source $HOME/.etc/profile
9
10 [ -n "$LANG" ] || export LANG="de_DE.ISO8859-1"
11 export LC_MESSAGES="C"
12 export EMAIL="alex@barton.de"
13 export WWW_HOME="http://barton.de/"
14 export NNTPSERVER="news.individual.de"
15 export CVS_RSH=ssh
16
17 [ "$OSTYPE" != "Aux" ] && ulimit -c 2048
18
19 if [ -z "$XAUTHORITY" -a -r $HOME/.Xauthority ]; then
20         cp $HOME/.Xauthority /tmp/Xauthority-$USER
21         chmod 600 /tmp/Xauthority-$USER
22         export XAUTHORITY="/tmp/Xauthority-$USER"
23 fi
24
25 if [ -f ~/.bashrc ]; then
26         . ~/.bashrc
27 fi
28
29 # -eof-