first, edit .bash_profile in your home.
#!/bin/bash export PS1="$PS2\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ "
Second, make a symbolic link to .bashrc
ln -s ~/.bash_profile ~/.bashrc
Last, the .screenrc file :
# Bottom line status
hardstatus alwayslastline "%{=}%{wk} %Y/%m/%d -%C%A %=%{kG} %{w}%w"
# Turn off start message:
startup_message off
# Set messages timeout to one second:
msgwait 1
# first window
screen -t default 0
# default windows title with the auto-title
# needs to add the title-escape-sequence in ~/.bashrc
shelltitle '$ |:'
Finaly, you can start your terminal with the screen recall command, re-attach all screens or create a new one.
screen -RR