mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-10 05:51:30 +01:00
11 lines
256 B
Bash
11 lines
256 B
Bash
|
#_tmux_sourced=1 exec tmux
|
||
|
if [[ -z $TMUX ]] && [[ -n $SSH_TTY ]]; then
|
||
|
session=tmux
|
||
|
|
||
|
if tmux has-session -t "$session" 2>/dev/null; then
|
||
|
exec tmux attach-session -t "$session"
|
||
|
else
|
||
|
exec tmux new-session -s "$session"
|
||
|
fi
|
||
|
fi
|