As some of you may know, screen offers an ability to have a "taskbar"-like bar that is always present and helps navigating around windows, etc. I find this bar irreplaceable.

What is the best configuration you've seen or one that you think is the most optimal/useful?

Mine is described and explained here: Supercharge Your GNU Screen With A Power "Taskbar" And Never Feel Lost Again

screen powerbar

link|improve this question
It is worth comparing the OPs website as listed in his profile with the link above. – dmckee Oct 7 '09 at 0:11
4  
dmckee, yeah, that's why I said mine is described there. – Artem Russakovskii Oct 7 '09 at 0:51
feedback

migrated from stackoverflow.com Oct 7 '09 at 0:10

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

closed as not constructive by Gareth, Daniel Beck, Nifle, slhck, tombull89 Sep 29 '11 at 11:02

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

5 Answers

Here's mine:

My status line

The code for it:

backtick 1 5 1 screen-status-display
hardstatus alwayslastline "%{= gk}| %H | %{+b .y}%l%{-} | %D %M %d %C | %{+b g}%t (%n)%{-} |%1`"

The backtick script fills the last four status areas. They are:

  1. Progress on ripping CDs
  2. Build manual process is running (a long running task that I like to know when it's done)
  3. What aptitude and kin are doing (flags are aptd (aptitude), dpkg, dnld (aptitude is downloading), and apt)
  4. Indicator of how many tasks I currently have waiting for me (if more than three, the asterisks move back and forth).
link|improve this answer
feedback

Here is mine:

hardstatus alwayslastline "%{b kw}%H %{r}%1` %{w}| %{g}%c %{w}| %{y}%d.%m.%Y %{w}| %{g}%l %{w}| %{-b kw}%u %-Lw%{= rW}%50> %n%f %t %{-}%+Lw%<"

alt text

host | time | date | load average | obligatory window

I am unable to remember where I got this hardstatus or if I adapt it from an existing one.

link|improve this answer
feedback

I use byobu and the default looks great alt text

link|improve this answer
feedback

This is mine.

Screencopy: (missing bold+underline of current window.

 0-bash  1 bash  2 bash  4 irssi                 ~100%/54C ons 07 oktober  1:48

Code

hardstatus alwayslastline "%{+r} %-w%{+bu I}%n-%t%{-}%+w %= %{+ b}%11` %{-}%D %d %LM %{+b I}%c "

The backtick program returns the information ~ (on AC power) 100% (battery) 54C (temperature)

link|improve this answer
If I had a laptop, that battery indicator would be nice. – Michael Johnson Oct 24 '09 at 6:14
feedback

Mostly, I just use ctrl-a+" to get the interactive menu of windows, or ctrl-a+' if I know the name of the one I want to jump to. I'd rather no waste a line of realestate to show information that most of the time is useless to me.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.