source: trunk/debathena/debathena/dotfiles/bashrc @ 23182

Revision 23182, 4.1 KB checked in by ghudson, 16 years ago (diff)
In dotfiles: * Use gnome-session-save for logout.
Line 
1# Global bashrc file
2#
3# $Id: bashrc,v 1.39 2006-07-17 23:14:07 rbasch Exp $
4
5# This file is sourced by default user file ~/.bashrc
6
7initdir=/usr/lib/init
8
9# add alias moved here to avoid having two copies of it.
10
11add () { eval "$( /bin/attach -Padd -b "$@" )" ; }
12
13
14# *******************   ENVIRONMENT SETUP   *******************
15
16
17
18# Set up standard system/user environment configuration (including setup of
19# environment variables, attachment of lockers, and setting of search path)
20
21# If we see ENV_SET set to empty, we could be a tcsh user who has
22# decided to run bash, or we could be a bash user suffering from the
23# misfeature that the standard xsession script runs the tcsh dotfiles
24# for all users.  Running the environment setup for the former
25# category of user would be unfriendly (it resets the homedir and
26# changes the path), so for now, only run environment setup for bash
27# users.  If the xsession problem is ever fixed, change this
28# conditional to check for '"${ENV_SET+set}" != set' and eliminate the
29# shell check.
30if [ "${ENV_SET:+set}" != set -a "${SHELL##*/}" = bash ]; then
31
32        export ENV_SET=t                        # Avoid unnecessary repeat
33        export HOSTTYPE="`/bin/machtype`"
34
35        if [ -r "$HOME/.generation" ]; then
36                export ATHENA_DOTFILE_GENERATION=`cat "$HOME/.generation"`
37        else
38                export ATHENA_DOTFILE_GENERATION=0
39        fi
40
41        umask 077                               # Strictly protect files
42                                                #  (does not apply in AFS)
43        ulimit -S -c 0                          # Don't allow coredumps
44        export EDITOR=emacs                     # Set default editor
45        export VISUAL=emacs                     # Set default screen editor
46        export MM_CHARSET=iso-8859-1
47
48        export MORE=-s
49
50        # Set double-sided printing for sufficiently recent users.
51        if [ 1 -le "$ATHENA_DOTFILE_GENERATION" ]; then
52                export LPROPT=-Zduplex
53        fi
54
55        export ATHENA_SYS=`/bin/machtype -S`
56        export ATHENA_SYS_COMPAT=`/bin/machtype -C`
57
58        if [ -z "$ATHENA_SYS" ]; then
59                export ATHENA_SYS=@sys
60        fi
61
62        if [ "${PRINTER+set}" != set \
63          -a -e /var/run/athena-clusterinfo.sh ]; then
64                PRINTER=`awk '/LPR/ { print $3 }' \
65                  /var/run/athena-clusterinfo.sh`
66                if [ -n "$PRINTER" ]; then export PRINTER; fi
67        fi
68
69        # Reset the HOME variable to correspond to the actual location
70        # of the user's home directory.  This will avoid having long
71        # pathnames being printed when /mit/<user> is a symlink to a
72        # path within AFS.
73
74        x=`(cd && /bin/pwd) 2>/dev/null`
75        if [ -n "$x" ]; then
76                export HOME=$x
77                if [ "$x" = "`/bin/pwd`" ]; then
78                        cd "$HOME"
79                fi
80        fi
81        unset x
82
83        # Run user environment customizations identified in your
84        # ~/.bash_environment file.  This is the place to include your
85        # own environment variables, attach commands, and other system
86        # wide setup commands.  You can also cancel default behaviors
87        # listed above.
88        # ~/.bash_environment is not sourced if NOCALLS is set (i.e.,
89        # if you selected the xlogin "Ignore your customizations"
90        # option when you logged in).
91
92        if [ "${NOCALLS+set}" != set -a -r ~/.bash_environment ]; then
93                . ~/.bash_environment
94        fi
95
96        # If the user has a bindir in $HOME, put it in front of the path.
97        athena_home_bin=$( /usr/bin/athdir "$HOME" )
98        PATH=${athena_home_bin:+$athena_home_bin:}$PATH
99        unset athena_home_bin
100
101fi
102
103
104# *******************  BASH SETUP   *******************
105
106# Set up standard bash shell initializations
107
108#   alias for re-establishing authentication
109renew () { kinit -54 $USER && fsid -a && zctl load /dev/null ; }
110
111#   alias for a convenient way to change terminal type
112term () { set -f; unset TERMCAP; eval "$( tset -s -I -Q "$@" )"; set +f; }
113
114#   aliases dealing with x window system
115xresize () { set -f; eval "$( resize -u )"; set +f ; }
116
117if [ "${XSESSION+set}" = set ]; then
118        logout () { gnome-session-save --kill --silent; exit; } # logout for X
119fi
120
121#   aliases dealing with adding locker programs
122
123alias setup='echo "setup is not supported in bash yet"'
124
125
126# All of the bash initializing commands above can be overridden by using
127# "unset" or "unalias" commands (or by changing things using "set" or
128# "alias" again) in your ~/.bashrc.mine file, which is sourced here.
129# ~/.bashsrc.mine is not sourced if the xlogin "Ignore your customizations"
130# option was selected to begin the session.
131
132if [ "${NOCALLS+set}" != set -a -r ~/.bashrc.mine ]; then
133        . ~/.bashrc.mine
134fi
Note: See TracBrowser for help on using the repository browser.