> Is their a way in which I could have the name or flag blink in certain > scenarios? For example, if there has been activity, I currently see: > [EMAIL PROTECTED] bash > I would love to make the @ stand out more.
Maybe something like this will work, if integrated with your own hardstatus setup. [EMAIL PROTECTED]> cat blinker blink=`cat $HOME/.blink` if [ "$blink" = "0" ] then echo 1 > $HOME/.blink echo $1 else echo 0 > $HOME/.blink echo $2 fi [EMAIL PROTECTED]> grep -e backtick -e '%1`' .screenrc hardstatus string "%1` hardstatus %1`" backtick 1 1 1 /home/luteijn/blinker "+" "x" [EMAIL PROTECTED]> Regards, Pieter. _______________________________________________ screen-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/screen-users
