samba /.screenrc

A work in progress. Window list at the bottom, along with clock and hostname. Each window has a status bar including the name of the window, active flags, and connected users. Pretty colors.
# screen runtime configuration

# get system default. {{{
source /etc/screenrc
# }}}
# fix the backspace key. {{{
# bindkey -d -k kb stuff ^H
# bindkey -d -k kb stuff "\010"
# bindkey -d \177 stuff ^H	# ASCII DEL to backspace
# bindkey -d ^? stuff ^H	# this is the delete key - best not to touch it.
# bindkey -d ^@ stuff ^H	# some systems get ^@ (null) with backspace...
# }}}
# don't show me copyright, etc. {{{
startup_message off
# }}}
# set terminal type. {{{
# term xterm # this is now handled by the alias in .bash_aliases
# }}}
# detach on hangup. {{{
autodetach on
# }}}
# each window should be a login shell... {{{
shell -$SHELL
# }}}
# default windows {{{
screen -t monitor	0	
#screen -t vim		1
#screen -t shell		3
# select 			2
# }}}
# terminal sharing {{{
multiuser on # so I can attach from multiple points.
# }}}
# at the bottom of each screen {{{
caption always "%{= .g}%{+u} %= %{-}[%n %{= .y}%t%{-}][u:%{=b .b}%u%{-}][f:%{=b .b}%f%{-}]"
# }}}
# at the very bottom of the terminal {{{
hardstatus alwayslastline '%{= .g}[%{b G}%H%{-}][%= %?%-w%?%{=b y}%n %t%{-}%?%+w%?%= %{= .g}][%{= .g}%m/%d %0c:%s%{-}]'
# }}}

# vim: foldmethod=marker foldenable