From: Oleg Broytman Date: Tue, 12 May 2020 22:51:30 +0000 (+0300) Subject: .profile: Start `screen` on interactive login shell X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=c5d595d83cab2e180a71bc65b9e4a8a2f71772db .profile: Start `screen` on interactive login shell --- 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