How can I make window list in GNU Screen appear always ( C-a, C-w) ( permanently )

link|improve this question
feedback

migrated from stackoverflow.com Apr 21 '11 at 16:53

This question came from our site for professional and enthusiast programmers.

1 Answer

Put the following lines in your .screenrc:

hardstatus on
hardstatus alwayslastline
hardstatus string "%w"

%w will show the window list in the status line.

See here for more information about the escape codes.

link|improve this answer
Okie. However, we need to add these two lines before this. "hardstatus on" "hardstatus alwayslastline" – Rakesh Apr 21 '11 at 11:22
@Rakesh: That is correct. I updated my answer. – lesmana Apr 21 '11 at 12:51
feedback

Your Answer

 
or
required, but never shown