screen's Appearance

Basics

Extras

hardstatus and caption

Note about fit.

Describe info.

Command Line

Keybindings

Commands

Examples

            attrcolor b "R"

Change the color to bright red if bold text is to be printed.

            attrcolor u "-u b"

Use blue text instead of underline.

            attrcolor b ".I"

Use bright colors for bold text. Most terminal emulators do this already.

            attrcolor i "+b"

Make bright colored text also bold.

Always display window list

You can force the status line to always stay at the bottom of the screen and set up a statusline string that displays the window information by adding this to your .screenrc:

 hardstatus on
 hardstatus alwayslastline
 hardstatus string "%w"

Fancy statusbar with centered window list

This small snippet for your .screenrc gives you a two-line statusbar at the bottom of the screen. The upper line consists of the number and name of all open windows, black on white background, with the active window centered and highlighted. The lower line shows the window number, window name and the window's hardstatus in white on black.

 altscreen on 
 hardstatus on
 hardstatus alwayslastline
 hardstatus string "%= %3n %t%? [%h]%? %="
 caption always
 caption string "%= %-w%L>%{= BW}%n*%t%{-}%52<%+w %L="