* usr/bin/byobu:

- fix logic error in showing user@host in gnome-terminal tabs
This commit is contained in:
Dustin Kirkland 2011-05-26 12:55:07 -05:00
commit 3b64f2098c
2 changed files with 3 additions and 1 deletions

2
debian/changelog vendored
View file

@ -6,6 +6,8 @@ byobu (4.5) unreleased; urgency=low
* usr/share/byobu/keybindings/f-keys, usr/share/byobu/profiles/common: * usr/share/byobu/keybindings/f-keys, usr/share/byobu/profiles/common:
- avoid some screen crashes associated with buggy 'layout' saving - avoid some screen crashes associated with buggy 'layout' saving
feature; only save layouts if user is splitting screens, LP: #788670 feature; only save layouts if user is splitting screens, LP: #788670
* usr/bin/byobu:
- fix logic error in showing user@host in gnome-terminal tabs
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 25 May 2011 19:37:18 -0500 -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 25 May 2011 19:37:18 -0500

View file

@ -52,7 +52,7 @@ fi
byobu-janitor --force byobu-janitor --force
# Set the window title # Set the window title
[ -z "$BYOBU_NO_TITLE" ] || printf "\033]0;${USER}@${HOSTNAME:-$(hostname)} - ${PKG}\007" [ -n "$BYOBU_NO_TITLE" ] || printf "\033]0;${USER}@${HOSTNAME:-$(hostname)} - ${PKG}\007"
# Allow override of default window list, with BYOBU_WINDOWS environment variable # Allow override of default window list, with BYOBU_WINDOWS environment variable
CUSTOM_WINDOW_SET=0 CUSTOM_WINDOW_SET=0