Comment 10 for bug 330322

Revision history for this message
Dustin Kirkland  (kirkland) wrote :

This should be fixed in the next upload of byobu to Karmic.

Also, I have a fix for screen-profiles in Jaunty. I'll will propose an SRU to jaunty-updates.

I will test if any arguments have been passed to screen. If so, I won't bother with profile selection at that time.

# If the user is running screen with some arguments, but has not selected
# their profile yet, don't bother them with profile selection at this time
if [ $# -gt 0 -a ! -h "$HOME/.screen-profiles/profile" ]; then
        exec /usr/bin/screen.real "$@"
        exit $?
fi

:-Dustin