5 lines
328 B
Bash
5 lines
328 B
Bash
|
# If you don't have weechat installed, connect to the existing tmux session through mosh
|
||
|
[[ ! -s /usr/bin/weechat ]] && alias weechat='mosh vps -- tmux attach -dt weechat'
|
||
|
# If you are thurstylark-vps, connect to the existing tmux session locally
|
||
|
[[ "$HOSTNAME" = "thurstylark-vps" ]] && alias weechat='tmux attach -dt weechat'
|