## Really needs clearing up! # read in your normal screenrc # before anything else (don't do this # because this is run from .screenrc) # # # Set shell to bash shell bash # # Set the terminal to xterm-xfree86 term xterm-color # # source $HOME/.screenrc # # now open a terminal window # screen -t BASH 1 bash stuff "clear\015" # # it's possible to set the window title with # the -t option # # for my irc client screen -t Irssi 2 # for Irssi # the stuff command returns you to shell after quiting the program #stuff "irssi\015" # for Irssi # # you can also specify the window number # to launch in # # for my usenet reader # changed server for NTL remove -- onwards screen -t usenet 3 # the stuff command returns you to shell after quiting the program # stuff "slrn\015" stuff "slrn --nntp -h news.cable.ntlworld.com -p 119\015" # stuff "slrn --nntp -h allnews.readfreenews.net -p 119 -f ~/.allnewsrc\015" # # for my rss reader #screen -t RSS 4 # the stuff command returns you to shell after quiting the program #stuff "snownews\015" # # for rTorrent screen -t rTorrent 4 # the stuff command returns you to shell after quiting the program stuff "rtorrent\015" # # for my text editor screen -t Vim 5 #stuff "vim\015" # # for the screen prompt comment back in below for screen prompt # screen -t screen 0 # # Load up the calendar in console 7 #screen -t Calendar 7 bash #stuff "clear\015" #stuff "when\015" # # Load up the tempreature monitor tail file screen -t Temp 7 stuff "clear\015" stuff "tail -f /home/USERNAME/alltemp\015" # # load up the auth.log tail file #screen -t auth.log 8 #stuff "clear\015" #stuff "tail -f /var/log/auth.log" # # # email must load last because it asks for a password screen -t Pine 6 # the stuff command returns you to shell after quiting the program # stuff "mutt\015" # uncomment for mutt email stuff "gmail -i\015" # uncomment for pine email (-i option for inbox) # # An alternative hardstatus to display a bar at the bottom listing the # windownames and highlighting the current windowname in blue. (This is only # enabled if there is no hardstatus setting for your terminal) hardstatus on hardstatus alwayslastline hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %d/%m/%y %C%a " # # Turn the vbell off vbell off # # # change escape from C-a to ### # escape ### # # Enable scrole up in terminal window # termcapinfo xterm ti@:te@ # # # #