Added line to continue tmux session whenever I login.

This commit is contained in:
Mika Suomalainen 2011-09-04 16:55:33 +03:00
parent de3de3068b
commit 4d74b57d5b
1 changed files with 6 additions and 0 deletions

6
bashrc
View File

@ -118,3 +118,9 @@ source ~/.bash_private_aliases
# To see time when bash starts :)
date
# To continue tmux session whenever I SSH (or open tmux) in (required with PuTTY on Symbian S60 Series 3 by me).
if [[ -z "$TMUX" ]]; then
tmux att
fi