# HG changeset patch # User Rob Landley # Date 1246164955 18000 # Node ID 879cf963cdbbd98586c2b4080662fdf82412d500 # Parent 93149f07231ff88df2b99dd13dc66398ba4ad8b5 Add option to disable title bar display updates. diff -r 93149f07231f -r 879cf963cdbb config --- a/config Wed Jun 24 13:02:03 2009 -0500 +++ b/config Sat Jun 27 23:55:55 2009 -0500 @@ -107,3 +107,7 @@ # instead of pretty-print output. # export BUILD_VERBOSE=1 + +# Don't update the title bar in the display + +# export NO_TITLE_BAR=1 diff -r 93149f07231f -r 879cf963cdbb sources/functions.sh --- a/sources/functions.sh Wed Jun 24 13:02:03 2009 -0500 +++ b/sources/functions.sh Sat Jun 27 23:55:55 2009 -0500 @@ -415,7 +415,8 @@ export WRAPPY_LOGPATH="$WRAPPY_LOGDIR/cmdlines.${STAGE_NAME}.$1" # Change window title bar to package now - echo -en "\033]2;$ARCH_NAME $STAGE_NAME $PACKAGE\007" + [ -z "$NO_TITLE_BAR" ] && + echo -en "\033]2;$ARCH_NAME $STAGE_NAME $PACKAGE\007" } # usage: wait4background [count]