Re: Can screen render hardstatus and messages in different lines in the terminal?
Dun Peal <[email protected]>
| Newsgroups | gmane.comp.gnu.screen.user |
|---|---|
| Message-ID | <[email protected]> |
Some digging on my own revealed the following chunk of code in `config.h`:
/*
* If you'd rather see the status line on the first line of your
* terminal rather than the last, define TOPSTAT.
*/
/* #undef TOPSTAT */ct
It moves both the hardstatus and the messages to the first (top) line,
so my hacky solution is to use a caption that contains the exact same
information my hardstatus used to contain, and turn the hardstatus
off. That way I have all that info on the lastline, and get messages
in the first line, with no shadowing.
Thanks, D.