mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* 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:
parent
9430ffd97f
commit
aa3ee46715
2 changed files with 6 additions and 3 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -13,6 +13,9 @@ byobu (5.46) unreleased; urgency=low
|
|||
* usr/bin/byobu-config: LP: #1177997
|
||||
- use decimal for os.makedirs() permission for compatibility
|
||||
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
|
||||
|
||||
|
|
|
@ -166,7 +166,7 @@ if [ "$#" = "0" ]; then
|
|||
exec tmux $SCREEN_TERM $BYOBU_PROFILE
|
||||
;;
|
||||
screen)
|
||||
exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE -t ''
|
||||
exec screen $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE
|
||||
;;
|
||||
esac
|
||||
else
|
||||
|
@ -182,7 +182,7 @@ if [ "$#" = "0" ]; then
|
|||
exec tmux $SCREEN_TERM $BYOBU_PROFILE $DEFAULT_WINDOW
|
||||
;;
|
||||
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
|
||||
;;
|
||||
|
@ -195,7 +195,7 @@ else
|
|||
exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_PROFILE "$@"
|
||||
;;
|
||||
screen)
|
||||
exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE -t '' "$@"
|
||||
exec $BYOBU_BACKEND $SCREEN_TERM $BYOBU_SESSION_NAME $BYOBU_PROFILE "$@"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue