From 23c8d9a92e77b296af16b04933d61660f74eb062 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Sun, 12 Aug 2018 08:44:08 -0500 Subject: [PATCH] * usr/lib/byobu/logo: LP: #1769676 - don't use the Ubuntu logo in the status line, as this breaks ssh clients coming to Ubuntu from other OSes without the Ubuntu font --- debian/changelog | 3 +++ usr/lib/byobu/logo | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index addeae88..c9929759 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ byobu (5.127) unreleased; urgency=medium - Googley PS1 for non-Ubuntu distros * usr/lib/byobu/logo, usr/share/byobu/profiles/bashrc: - use Google lego logo for gLinux + * usr/lib/byobu/logo: LP: #1769676 + - don't use the Ubuntu logo in the status line, as this breaks ssh + clients coming to Ubuntu from other OSes without the Ubuntu font -- Dustin Kirkland Sun, 27 May 2018 18:07:11 -0500 diff --git a/usr/lib/byobu/logo b/usr/lib/byobu/logo index b8093bb2..c1e7cd0e 100755 --- a/usr/lib/byobu/logo +++ b/usr/lib/byobu/logo @@ -37,7 +37,10 @@ __logo() { if $MARKUP; then if [ "$BYOBU_BACKEND" = "tmux" ] && [ "$BYOBU_CHARMAP" = "UTF-8" ]; then if [ ! "$VTE_CJK_WIDTH" = "1" ] && [ ! "$VTE_CJK_WIDTH" = "wide" ] ; then - color "colour202" "colour255" ; printf " u "; color - + # color "colour202" "colour255" ; printf " u "; color - + # Ubuntu's logo doesn't display anywhere, except for on Ubuntu itself, which has the Ubuntu font with the logo + # which breaks when you ssh into Ubuntu from elsewhere (Windows, Debian, Mac) + color "colour202" "colour255" ; printf " u "; color - else color m W; printf " u "; color - fi