Is there a way in screen to turn off the status bar? Ideally, only display it when I have 2+ tabs open? What .screenrc
entries would accomplish this?
Is there a way in screen to turn off the status bar? Ideally, only display it when I have 2+ tabs open? What .screenrc
entries would accomplish this?
There are a couple of ways you can get a "status bar" that I can think of:
One status bar is the
caption
. It normally only appears with multiple windows (split screen), this setting iscaption splitonly
. The always-there version iscaption always
. It doesn't seem to have a way to tie it to the number of screens ("tabs") open. If it goes away by hitting your command character (^a) and typing:caption splitonly
then that was what you're looking at, and puttingcaption splitonly
in your .screenrc will get rid of it.The other status bar is the
hardstatus
which refers to the terminal's "hardware status" line. This one usually gets displayed in the title bar of your window, but it could be forced to the bottom of the terminal with the settinghardstatus alwayslastline
. Settinghardstatus off
turns it off. This is always either "on" or "off".The setting to turn off the
hardstatus
line is calledignore
. Theoff
setting doesn't do what one would expect it to do, the manual says:I have this in my
.screenrc
, which seems to do what you need: