17 lines
301 B
Plaintext
17 lines
301 B
Plaintext
# ~/.profile: executed by Bourne-compatible login shells.
|
|
|
|
if [ "$BASH" ]; then
|
|
if [ -f ~/.bashrc ]; then
|
|
. ~/.bashrc
|
|
fi
|
|
fi
|
|
|
|
mesg n || true
|
|
|
|
sname="t-$(hostname)"
|
|
|
|
if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then
|
|
tmux attach-session -t $sname || tmux new-session -s $sname
|
|
exit
|
|
fi
|