Skip to content

Instantly share code, notes, and snippets.

@krlmlr
Forked from anonymous/.autoscreen
Last active December 17, 2015 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krlmlr/5561712 to your computer and use it in GitHub Desktop.
Save krlmlr/5561712 to your computer and use it in GitHub Desktop.
# Auto-screen invocation. see: http://taint.org/wk/RemoteLoginAutoScreen
# if we're coming from a remote SSH connection, in an interactive session
# then automatically put us into a screen(1) session. Only try once
# -- if $STARTED_SCREEN is set, don't try it again, to avoid looping
# if screen fails for some reason.
if [ "$TERM" != screen -a "$PS1" != "" -a "${STARTED_SCREEN:-x}" = x -a "${SSH_TTY:-x}" != x -a "$DISPLAY" == "" ]
then
echo "Auto-starting screen."
# Set the window title to HOSTNAME
echo -ne "\e]2;$HOSTNAME\a"
# If no session is running, set DISPLAY environment variable
screen -ls | egrep "^No Sockets found" > /dev/null
if [ $? = 0 ]; then
export DISPLAY=:$(( $( (echo 5555; ls /tmp/.X11-unix/X* 2> /dev/null) | sed 's/^.*\/X//' | sort -n | tail -n 1) + 1))
echo "No running screen found. DISPLAY set to $DISPLAY."
fi
STARTED_SCREEN=1 ; export STARTED_SCREEN
screen -D -RR && exit 0
# normally, execution of this rc script ends here...
echo "Screen failed! Continuing with normal bash startup."
fi
# [end of auto-screen snippet]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment