]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - screenrc.in
screenrc: Documentation update.
[config/dotfiles.git] / screenrc.in
1 # Screen configuration file.
2
3
4 # Don't display startup message.
5 startup_message off
6
7 # Use visual bell instead of audible bell.
8 vbell on
9
10 # Increase the scrollback buffer.
11 defscrollback 10000
12
13 # Enable 256 color mode.
14 term screen-256color
15 # Allow bold colors in XTerm (not necessary for Rxvt), not sure why this is
16 # necessary. Otherwise normal and bold colors are switched. Thanks to
17 # http://www.frexx.de/xterm-256-notes/.
18 attrcolor b ".I"
19
20 # Always display the caption.
21 caption always "%{= Bw}%3n %t"
22 # %{= Bw} - white on light blue background, also reset all attributes
23 # %3n     - window number
24 # %t      - window name
25 # Always display the status line with open windows and the hostname.
26 hardstatus alwayslastline "%w%=%l %H"
27 # %w - number and names of windows
28 # %= - right align the following text
29 # %l - load average
30 # %H - hostname
31
32 # Run urlview on current screen content. Very useful to follow links. Make
33 # sure hardcopy_append is off before using this command.
34 bind ^B eval "hardcopy $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"