dot/emacs: Tramp hacking: use `sudo', and set up magic proxies.
[profile] / dot / bash_profile
CommitLineData
59c9c0e4
MW
1### -*-sh-*-
2###
3### Bash startup things
f617db13 4
59c9c0e4
MW
5## Only do any of this if we haven't done it before. Otherwise we
6## can have loops and lots of wasted time.
f617db13 7if [ -z "$__mdw_profile" ]; then
f617db13
MW
8export __mdw_profile=done
9
59c9c0e4
MW
10###--------------------------------------------------------------------------
11### Utility functions.
12
13## __mdw_addto VAR DIR PATH ...
14##
15## VAR is the name of a PATH-like environment variable (i.e., one which
16## contains a sequence of pathnames separated by colons). DIR is either `l'
17## or `r'. The PATHs are pathnames. Those PATHs which correspond to
18## existing directories but which aren't currently named in the variable are
19## added to the left or right (depending on DIR) of VAR. The relative order
20## of PATHs added in the same invokation is the same as the order they
21## appeared in PATHs: the DIR argument only affects which end of the VAR they
22## get added to.
f617db13 23__mdw_addto () {
85d3810b 24 local var=$1 val dir=$2 new="" change=nil
f617db13
MW
25 eval "val=\$$var"
26 shift 2
27 for i in "$@"; do
28 case "$new:" in *:$i:*) continue;; esac
29 [ -d $i ] || continue
30 case "X$val" in
59c9c0e4
MW
31 X) val=$i change=t continue ;;
32 X$i) continue ;;
33 X*:$i:*) val=`echo $val | sed -e "s=:$i:=:="` ;;
34 X$i:*) val=${val#$i:} ;;
35 X*:$i) val=${val%:$i} ;;
f617db13 36 esac
85d3810b 37 new=$new:$i change=t
f617db13
MW
38 done
39 case $dir in
59c9c0e4
MW
40 l) val=${new#:}:$val ;;
41 r) val=$val$new ;;
f617db13 42 esac
584e04e1 43 case $change in t) export $var="$val" ;; esac
f617db13
MW
44}
45
59c9c0e4
MW
46## __mdw_programp NAME
47##
48## Does NAME exist as an executable program?
49__mdw_programp () { type -t >/dev/null "$1"; }
50
51###--------------------------------------------------------------------------
52### Other preliminaries.
53
54## Work out my home directory.
55##
56## This horrible trick resolves symbolic links. It enables resolving links,
57## changes directory and displays the name of the directory in a subshell to
58## avoid changing the current state.
59HOME=`(set -P; cd $HOME; pwd)`
60cd $HOME
61
62## Establish a temporary directory.
63[ "$TMPDIR" ] || eval `tmpdir -b`
64export TMP=$TMPDIR
65
66## CDE's session structure is demented and doesn't leave us with a proper
67## logout hook, so synthesize one here.
68[ -n "$DT" ] && trap "source $HOME/.bash_logout" EXIT
69
70###--------------------------------------------------------------------------
71### Set some basic paths.
f617db13 72
59c9c0e4 73## The main path.
f617db13 74__mdw_addto PATH l \
f141fe0f 75 $HOME/bin \
f617db13 76 {,/usr{,/local}{,/X11R6}}{/bin,/sbin,/games} \
b187640a 77 /opt/nfast{,/gcc}{/bin,/sbin} \
f617db13 78 $HOME/src/ncipher/scripts
59c9c0e4
MW
79
80## If we have Plan 9 from User Space, then add that in.
f141fe0f
MW
81if [ -d /usr/local/plan9 ]; then
82 export PLAN9=/usr/local/plan9
83 __mdw_addto PATH r \
84 $PLAN9/bin
85fi
f617db13 86
59c9c0e4
MW
87## Search for `info' documents.
88__mdw_addto INFOPATH r \
89 $HOME/info \
90 /usr/info /usr/share/info \
91 /usr/local/info /usr/local/share/info \
92 /usr/local/share/info/its
2041672d 93
59c9c0e4
MW
94## Script libraries.
95__mdw_addto PERLLIB r $HOME/lib/perl
96__mdw_addto PYTHONPATH r $HOME/lib/python
f617db13 97
59c9c0e4
MW
98###--------------------------------------------------------------------------
99### Various other kinds of configuration.
f617db13 100
59c9c0e4
MW
101## Sensible umask if users have their own groups.
102umask 002
f617db13 103
59c9c0e4 104## Mail and general identification.
b056f5c4 105export MAIL=`mdw-conf mailbox`
f617db13 106export NAME="Mark Wooding"
b056f5c4 107export EMAIL=`mdw-conf email`
f617db13
MW
108export QMAILINJECT=c
109
59c9c0e4
MW
110## Some programs want to know the hostname.
111[ -z "$HOST" ] && export HOST=`hostname`
f374674c 112
59c9c0e4 113## Text editor configuration.
e04c4857 114export MDW_EDITOR=ed
f3f622e3
MW
115emacs_startup_args="--no-site-file --mdw-fast-startup -nw"
116for ed in \
117 "emacs22 $emacs_startup_args" \
118 "emacs21 $emacs_startup_args" \
b0d8acbe 119 zile mg \
f3f622e3
MW
120 "emacs -nw" \
121 vi pico nano ae; do
97b82392 122 name=`echo $ed | sed 's/ .*$//'`
2041672d 123 if __mdw_programp "$name"; then
e04c4857 124 MDW_EDITOR=$ed
97b82392
MW
125 break
126 fi
127done
e04c4857 128export EDITOR=mdw-editor VISUAL=mdw-editor
97b82392 129
59c9c0e4
MW
130## Determine the locale settings. Really don't set LC_COLLATE because it
131## messes with the order of files in `ls' listings and similar.
703b345d
MW
132if [ "$DISPLAY" != "" ]; then
133 LANG=`mdw-conf x-ctype`
bc30f5c4 134else
703b345d 135 : ${LANG=${LC_CTYPE-${LC_ALL-`mdw-conf console-ctype`}}}
c537b3bf
MW
136 case "$TERM,`tty`" in
137 linux,/dev/tty*)
703b345d
MW
138 if vt-is-UTF8 >/dev/null 2>&1; then
139 ctype=.utf8
140 else
141 ctype=
142 fi
143 LANG=${LANG%.*}$ctype
144 ;;
145 esac
bc30f5c4 146fi
703b345d
MW
147unset LC_ALL
148export LC_COLLATE=POSIX LANG
bc5bd6eb 149
59c9c0e4 150## Pager configuration.
b20bfd83 151export MDW_PAGER=`type -p less` PAGER=mdw-pager METAMAIL_PAGER=mdw-pager
337ab149 152export LESS="-iqgRh1FX"
f617db13 153export LESSOPEN="|lesspipe.sh %s"
e1375853 154case "${LC_CTYPE-$LANG}" in
c66a7e44 155 *utf8 | *utf-8 | *UTF8 | *UTF-8) LESSCHARSET=utf-8 ;;
6121c48e
MW
156 *) LESSCHARSET=latin1 ;;
157esac
158export LESSCHARSET
d03de69c 159__mdw_programp global && export LESSGLOBALTAGS=global
93ba996d 160
59c9c0e4 161## HTTP and FTP proxies.
93ba996d
MW
162http=`mdw-conf http-proxy none`
163case "${http_proxy-none},$http" in
164 *,none) ;;
4b1d5c25 165 none,*) export http_proxy=http://$http/ ;;
93ba996d
MW
166esac
167ftp=`mdw-conf ftp-proxy none`
168case "${ftp_proxy-none},$ftp,${http_proxy-none}" in
169 *,none,none) ;;
170 none,none,*) export ftp_proxy=$http_proxy ;;
4b1d5c25 171 none,*,*) export ftp_proxy=http://$ftp/ ;;
93ba996d 172esac
f617db13 173
59c9c0e4
MW
174## Ncurses programs should use the Unicode box-drawing characters because the
175## alternative character set stuff isn't supported well.
176export NCURSES_NO_UTF8_ACS=1
177
178## Shut up Perl's readline machinery.
179export PERL_READLINE_NOWARN=yes
180
181## If we have `distcc' then tell `ccache' to use it.
182__mdw_programp distcc && export CCACHE_PREFIX=distcc
183
184## Acquiring root privileges. This is mainly the job of `bashrc', but we
185## cache the mechanism here.
186export __MDW_ROOTLY=`mdw-conf rootly`
187export BECOME="--preserve-environment"
188
189## It's useful to see the little sigils in `ls'.
190[ -z "$LS_OPTIONS" ] && export LS_OPTIONS="-F"
191
192## Settings for BBC BASIC listing.
193export BASCAT="-l +n"
194
195## Version control hacking.
196export CVS_RSH=ssh
197export CVSROOT=`mdw-conf cvs-root`
198export SVNROOT=`mdw-conf svn-root`
199export P4CONFIG=.p4
200
201## News server.
202[ -z "$NNTPSERVER" ] && export NNTPSERVER=`mdw-conf nntp-server`
203
204## Help X programs find their resources.
f617db13
MW
205export XUSERFILESEARCHPATH="$HOME/.Xapps/%N:/usr/lib/X11/%T/%N%S"
206
59c9c0e4 207## Make OpenOffice.org do its thing properly.
a5abc1d2
MW
208export OOO_FORCE_DESKTOP=gnome
209
59c9c0e4 210## Configure `ps'.
f617db13
MW
211export PS_PERSONALITY=gnu
212
59c9c0e4 213## Disable core dumps.
f617db13
MW
214ulimit -S -c 0
215
59c9c0e4
MW
216###--------------------------------------------------------------------------
217### Authentication and SSH hacking.
f617db13 218
59c9c0e4
MW
219## Start an authentication agent. This is unnecessarily fiddly. If there's
220## a Gnome keyring server then we should use that; unfortunately, it may not
221## yet have had a chance to populate the environment with its settings, so we
222## go off and fetch them.
f589321e
MW
223if { { [ "$GNOME_KEYRING_CONTROL" ] &&
224 [ -s "$GNOME_KEYRING_CONTROL" ]; } ||
225 { [ "$DBUS_SESSION_BUS_ADDRESS" ] &&
226 dbus-send --session --print-reply --dest=org.freedesktop.DBus \
227 / org.freedesktop.DBus.GetNameOwner string:org.gnome.keyring \
228 >/dev/null 2>/dev/null; }; } &&
229 stuff=$(gnome-keyring-daemon -s -c ssh 2>/dev/null)
b8e1fad6
MW
230then
231 eval "$stuff"
f589321e 232 export SSH_AUTH_SOCK
1ee51934
MW
233fi
234
59c9c0e4 235## If we still don't have an agent then start one with a stable name.
f617db13
MW
236eval `start-ssh-agent -b`
237
59c9c0e4
MW
238## Decide whether this session should be considered `secure'. A session is
239## secure if it's on a secure TTY, but there are lots of ways of finding out
240## which TTYs are secure.
f617db13
MW
241if [ -z "$__mdw_bashrc" ] && [ "$__mdw_force_secure_session" = "yes" ] ||
242 ( tty="`tty`" devtty="(/dev/)?${tty#/dev/}"
243 { { { [ -e /etc/securetty ] && sectty=/etc/securetty; } ||
852cd5fb 244 { [ -e /etc/securettys ] && sectty=/etc/securettys; }; } &&
f617db13
MW
245 egrep "$devtty" $sectty >/dev/null; } ||
246 { [ -e /etc/default/login ] &&
247 egrep "^CONSOLE=$devtty" /etc/default/login >/dev/null; } ||
248 case "${tty#/dev/}" in
249 console|systty|tty[0-9]) true ;;
250 *) false ;;
251 esac )
252then
253 export __mdw_sechost="`hostname`"
254fi
255
59c9c0e4 256## Start a passphrase pixie if there is one and it's not already running.
f617db13 257if pixie --version >/dev/null 2>&1; then
365662c8 258 mkdir -p $HOME/.catacomb
f617db13
MW
259 pixie=${CATACOMB_PIXIE-$HOME/.catacomb/pixie}
260 if [ -S "$pixie" ] && pixie -C help >/dev/null 2>/dev/null; then
261 :
262 else
263 pixie -d 2>>$HOME/.catacomb/pixie.log
264 __mdw_started_pixie=yes
265 fi
266fi
267
59c9c0e4
MW
268###--------------------------------------------------------------------------
269### Finishing touches.
270
271## If there's a local hook then run it.
68aea1d9
MW
272[ -f "$HOME/.profile-local" ] && . "$HOME/.profile-local"
273
59c9c0e4 274## End of the `__mdw_profile' guard.
7362aa2c
MW
275fi
276
59c9c0e4
MW
277## If we haven't run the `.bashrc' yet, and this shell is interactive, then
278## run it now.
f617db13
MW
279[ -z "$__mdw_bashrc" ] && [ -t 0 ] && \
280 [ -r $HOME/.bashrc ] && . $HOME/.bashrc
59c9c0e4
MW
281
282###----- That's all, folks --------------------------------------------------