From e5c9fd0a0c246960d744c754a8f29dcb2056408d Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Fri, 3 Nov 2023 23:40:55 +0000 Subject: [PATCH] Don't start screen on ttys anymore. --- .bash_profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index 26d33f8..8ec9ecb 100644 --- a/.bash_profile +++ b/.bash_profile @@ -78,7 +78,9 @@ hash screen >/dev/null 2>&1 && { case "$(echo "${SCREENS:--n}" | wc -l)" in 0) # No screens found - start a new instance if on a tty. - [[ "$TTY" == tty* ]] && screen + # Disabled this because screens should be started on chuckie not the desktop/laptop. + # [[ "$TTY" == tty* ]] && screen + : ;; 1) # Just one screen - reconnect if it's not dead.