Thomas Köhler wrote:
> I'm not sure I understand your request (how do you set $WINDOW?),
I just include $WINDOW (which is defined in the environment by screen)
in bash's PS1 (prompt) variable. E.g.,
if test x"$WINDOW" != x""; then
SCREEEN_PS1="($WINDOW)"
else
SCREEEN_PS1=""
fi
PS1='${debian
I'd like to set the title I've assigned a given window (via C-a A) in my
prompt just like I can currently set $WINDOW. Is there a way to do
this? I read the manual section on setting screen titles, but it seemed
to be from an xterm title perspective and also melted my brain. :)
___