Zsh: move tmux lauch to it's own configuration file and make it the
first one executed
This commit is contained in:
parent
c134cdce6c
commit
1ae2219d8a
8 changed files with 13 additions and 14 deletions
8
home/.config/zsh/01-tmux.zsh
Normal file
8
home/.config/zsh/01-tmux.zsh
Normal file
|
@ -0,0 +1,8 @@
|
|||
# Launch tmux if logging in over ssh
|
||||
if [[ -z "$TMUX" ]] && [[ -n "$SSH_CONNECTION" ]]; then
|
||||
if tmux has-session -t ssh_tmux &2>/dev/null; then
|
||||
exec tmux -2 attach-session -t ssh_tmux
|
||||
else
|
||||
exec tmux -2 new-session -s ssh_tmux
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue