dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 2c0836cd700581190ac4e796a88d272eb6d0ae4b
parent cc481130b7905450b85ab7e2c96ec43bea2c11eb
Author: Anders Damsgaard Christensen <adc@geo.au.dk>
Date:   Fri, 20 May 2016 13:16:53 -0700

change irc script to point to new server

Diffstat:
Mbin/irc.sh | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/irc.sh b/bin/irc.sh @@ -8,13 +8,14 @@ HOST=adamsgaard.dk #PORT=12344 PORT=22 #POSTCMD=\'bin/tmux-irc.sh\' -POSTCMD=\'bin/tmux-irc.sh\' +POSTCMD= UNAMESTR=`uname` if [[ "$UNAMESTR" == 'Linux' ]]; then autossh -t -p $PORT $USER@$HOST $POSTCMD elif [[ "$UNAMESTR" == 'Darwin' ]]; then - ssh -t -p $PORT $USER@$HOST $POSTCMD + #ssh -t -p $PORT $USER@$HOST $POSTCMD + mosh $USER@$HOST $POSTCMD else echo "Platform not supported" exit 1