dotfiles/.config/zsh/6-ssht-tmux-attaching

5 lines
114 B
Plaintext

# automatically use tmux whenever we ssh to a server
function ssht(){
ssh $* -t 'tmux a || tmux || /bin/bash'
}