]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - screenrc.in
screenrc: Display system load in hardstatus.
[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, not sure why this is necessary. Otherwise normal and bold
16 # colors are switched. Thanks to http://www.frexx.de/xterm-256-notes/.
17 attrcolor b ".I"
18
19 # Always display the status line with open windows and the hostname.
20 hardstatus alwayslastline "%w%=%l %H"
21
22 # Run urlview on current screen content. Very useful to follow links. Make
23 # sure hardcopy_append is off before using this command.
24 bind ^B eval "hardcopy $HOME/.screen-urlview" "screen urlview $HOME/.screen-urlview"