From 3b64f2098c94227148dde5845becd2b655e78bf2 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Thu, 26 May 2011 12:55:07 -0500 Subject: [PATCH] * usr/bin/byobu: - fix logic error in showing user@host in gnome-terminal tabs --- debian/changelog | 2 ++ usr/bin/byobu | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7604055e..32d837b0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ byobu (4.5) unreleased; urgency=low * usr/share/byobu/keybindings/f-keys, usr/share/byobu/profiles/common: - avoid some screen crashes associated with buggy 'layout' saving 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 Wed, 25 May 2011 19:37:18 -0500 diff --git a/usr/bin/byobu b/usr/bin/byobu index 0d286f7e..07baa768 100755 --- a/usr/bin/byobu +++ b/usr/bin/byobu @@ -52,7 +52,7 @@ fi byobu-janitor --force # 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 CUSTOM_WINDOW_SET=0