10

I've started to play with GNU Screen setting.

What's the difference between hardstatus and caption in GNU Screen?

hardstatus seems to appear at the bottom on the Terminal, but I don't even know what caption really is yet.

PJ.
  • 3,017
  • 5
  • 21
  • 15

2 Answers2

11

Position, where these two statuses are displayed depends on your configuration. But the logical meaning of them is as follows:

  • hardstatus: this line is used for status messages from screen - for example, to alert you to activity, or other similar messages.
  • caption: this line is usually only shown if there is more than one window open and allows you to view details of them (like a currently active window).

You'll have the statuses on last two lines of the screen, if you configure them like this in your ~/.screenrc:

caption string ...
hardstatus alwayslastline ...

You can read further details on An introduction to the visual features of GNU Screen.

vidarlo
  • 6,654
  • 2
  • 18
  • 31
6

For me, using PuTTY in Windows, hardstatus is displayed in the Windows window title (hstatus string), while caption is displayed at the bottom of each screen window when the screen is split (caption splitonly string) or at the bottom of any screen window whether it's split or not (caption always string).

You can find further documentation in info screen.

Dennis Williamson
  • 62,149
  • 16
  • 116
  • 151
  • Using Putty in Windows, hardstatus alwayslastline displays the status at the bottom of the window, as the last line. – matt b Feb 12 '10 at 14:34