13d57fa3cfceea4126362bc2ef8bdec961fcc7df
[feisty_meow.git] / customizing / fred / scripts / ssh.sh
1 #!/bin/bash
2
3 # wraps our calling the secure shell and lets us pick our credentials.
4
5 source "$FEISTY_MEOW_LOADING_DOCK/custom/scripts/pick_credentials.sh"
6
7 # save the former terminal title if we're running in X with xterm.
8 prior_title=
9 if [ "$TERM" == "xterm" ]; then
10   prior_title="$(xprop -id $WINDOWID | perl -nle 'print $1 if /^WM_NAME.+= \"(.*)\"$/')"
11 fi
12
13 # force the TERM variable to a more generic version for other side.
14 # we don't want the remote side still thinking it's running xterm.
15 export TERM=linux
16
17 #hmmm: it would be good to set an interrupt handler here and
18 #      trap ctrl-c, since otherwise we are getting exited from and losing a chance
19 #      to reset the terminal title.  this actually happens a lot, since some X11
20 #      or other background process is left running and the ssh never actually quits,
21 #      forcing one to hit ctrl-c.
22
23 if [ ! -z "$keyfile" ]; then
24   \ssh -i "$keyfile" -X -C $*
25 #-c blowfish-cbc 
26 else
27   \ssh -X -C $*
28 #-c blowfish-cbc 
29 fi
30
31 if [ $? -eq 0 ]; then
32   # we don't want to emit anything extra if this is being driven by git.
33   if [ -z "$(echo $* | grep git)" ]; then
34     # re-run the terminal labeller after coming back from ssh.
35     # we check the exit value because we don't want to update this for a failed connection.
36     if [ -z "$prior_title" ]; then
37       bash $FEISTY_MEOW_SCRIPTS/tty/label_terminal_with_infos.sh
38     else
39       bash $FEISTY_MEOW_SCRIPTS/tty/set_term_title.sh "$prior_title"
40     fi
41   fi
42 fi
43
44