I usually split my GNU Screen into four regions, and I don't really need the status bars for each of those windows.
Is there an option to disable GNU Screen window status bars?
I could only find caption always|split only in the manual.
Thanks :)
I usually split my GNU Screen into four regions, and I don't really need the status bars for each of those windows.
Is there an option to disable GNU Screen window status bars?
I could only find caption always|split only in the manual.
Thanks :)
You can't disable it to get back some more screen real estate, but you can change its colour so that it "disappears"...
Add the following to your
.screenrc
:So, how does this work? Well assuming your screen terminal background is black, you are making the caption strings background and foreground black as well. "k" stands for black, the first is for the foreground and the second one is for the background. The "XXXXXX"s are simply a string to make it work.
I guess if you have chosen a different background colour for your main terminal, you simply change kk to whatever colour you have chosen. Yes, you get a small gap, but not as in your face as the big bars across the screen.
I think you want
Try putting it in your
~/.screenrc
.This will override any setting that's in
/etc/screenrc
.If that doesn't work, try
If you just want to remove the text but keep the window divider, just do:
caption string " "
in your .screenrc