From ee91021d248500e7a17a15b6c697a7185fefe2c7 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Sat, 14 Jan 2023 02:14:20 +0000 Subject: [PATCH] bin: don't use autossh anymore Too often it will lock me out by repeatadly attempting to connect. --- bin/weechat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/weechat b/bin/weechat index f95651d..97d773d 100755 --- a/bin/weechat +++ b/bin/weechat @@ -6,5 +6,5 @@ host=rmz.io if tmux -L weechat has-session -t weechat 2>/dev/null; then tmux -L weechat attach else - autossh -M0 -t $host "LANG=en_GB.UTF-8 tmux -L weechat attach" + ssh -t $host "LANG=en_GB.UTF-8 tmux -L weechat attach" fi -- 2.48.1