1 # Screen configuration file.
4 # Don't display startup message.
7 # Use visual bell instead of audible bell.
10 # Increase the scrollback buffer.
16 # Enable 256 color mode.
18 # Allow bold colors in XTerm (not necessary for Rxvt), not sure why this is
19 # necessary. Otherwise normal and bold colors are switched. Thanks to
20 # http://www.frexx.de/xterm-256-notes/.
24 # CAPTION AND HARDSTATUS
26 # Use white on light blue background for highlighting and text messages (and
27 # for window borders in split mode).
30 # Make sure the temporary variable we use is empty. Thanks to
31 # http://gist.github.com/133000 for the idea to use setenv and to TauPan in
32 # #screen on Freenode (2010-03-10 16:11) for reminding me of it and searching
36 # Always display the caption.
37 setenv s "$s%{= Bw}" # - white on light blue background, also reset all
38 # attributes (necessary so everything is displayed
40 setenv s "$s%3n" # - window number
41 setenv s "$s " # - space
42 setenv s "$s%t" # - window name
45 # Always display the status line with open windows and the hostname.
46 setenv s "$s%w" # - number and names of windows
47 setenv s "$s%=" # - right align the following text
48 setenv s "$s%l" # - load average
49 setenv s "$s " # - space
50 setenv s "$s%H" # - hostname
51 hardstatus alwayslastline "$s"
57 # Remove some bindings I don't use to prevent using them accidentally. You
58 # probably don't want to copy this.
71 # Run urlview on current screen content. Very useful to follow links. Make
72 # sure hardcopy_append is off before using this command.
73 bind ^B eval "hardcopy $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"