screen

Screen by default?

Following up on Dustin's blog about our idea of proposing screen configurations for ubuntu server, here is how I have set up my environment to use screen by default on my machines.

First of all, I modified my .bashrc to add the following at the end:

if [ "$TERM" != "screen" ]; then
    #screen -D -R
    #Update 2008 Dec 16: -xRR is way better
    screen -xRR
fi

Syndicate content