* usr/bin/byobu: LP: #1195726

- zeroing out window titles in byobu-screen is causing other problems,
    especially when the user defines shelltitle in ~/.screenrc
This commit is contained in:
Dustin Kirkland 2013-07-16 17:39:22 -05:00
commit aa3ee46715
2 changed files with 6 additions and 3 deletions

3
debian/changelog vendored
View file

@ -13,6 +13,9 @@ byobu (5.46) unreleased; urgency=low
* usr/bin/byobu-config: LP: #1177997 * usr/bin/byobu-config: LP: #1177997
- use decimal for os.makedirs() permission for compatibility - use decimal for os.makedirs() permission for compatibility
with older+newer python versions with older+newer python versions
* usr/bin/byobu: LP: #1195726
- zeroing out window titles in byobu-screen is causing other problems,
especially when the user defines shelltitle in ~/.screenrc
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 15 Jul 2013 15:52:56 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Mon, 15 Jul 2013 15:52:56 -0500

View file

@ -166,7 +166,7 @@ if [ "$#" = "0" ]; then
exec tmux $SCREEN_TERM $BYOBU_PROFILE exec tmux $SCREEN_TERM $BYOBU_PROFILE
;; ;;
screen) screen)
exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE -t '' exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE
;; ;;
esac esac
else else
@ -182,7 +182,7 @@ if [ "$#" = "0" ]; then
exec tmux $SCREEN_TERM $BYOBU_PROFILE $DEFAULT_WINDOW exec tmux $SCREEN_TERM $BYOBU_PROFILE $DEFAULT_WINDOW
;; ;;
screen) screen)
exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE -t '' $DEFAULT_WINDOW exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE $DEFAULT_WINDOW
;; ;;
esac esac
;; ;;
@ -195,7 +195,7 @@ else
exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_PROFILE "$@" exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_PROFILE "$@"
;; ;;
screen) screen)
exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE -t '' "$@" exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE "$@"
;; ;;
esac esac
fi fi