From c5d595d83cab2e180a71bc65b9e4a8a2f71772db Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Wed, 13 May 2020 01:51:30 +0300 Subject: [PATCH] .profile: Start `screen` on interactive login shell --- .profile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.profile b/.profile index 68531ec..b336e2a 100644 --- a/.profile +++ b/.profile @@ -304,3 +304,9 @@ fi # # fi # fi + +if [ -n "$SSH_CONNECTION" -a -z "$STY" -a -t 0 ] && + which screen >/dev/null 2>&1 +then + exec screen -xRR -S default +fi -- 2.39.2