* usr/lib/byobu/logo:

- use a UTF-8 approximation of the Byobu logo, 〣
    Unicode Character 'HANGZHOU NUMERAL THREE' (U+3023)
This commit is contained in:
Dustin Kirkland 2013-09-24 15:36:04 -05:00
commit d848dd75a1
2 changed files with 8 additions and 2 deletions

4
debian/changelog vendored
View file

@ -1,6 +1,8 @@
byobu (5.61) unreleased; urgency=low
* UNRELEASED
* usr/lib/byobu/logo:
- use a UTF-8 approximation of the Byobu logo, 〣
Unicode Character 'HANGZHOU NUMERAL THREE' (U+3023)
-- Dustin Kirkland <kirkland@ubuntu.com> Sat, 21 Sep 2013 09:42:30 -0500

View file

@ -120,7 +120,11 @@ __logo() {
$MARKUP && printf "$(color W r)%s$(color -)" "$logo" || printf "$logo"
;;
*)
logo="[B]"
if [ "$BYOBU_BACKEND" = "tmux" ] && [ "$BYOBU_CHARMAP" = "UTF-8" ]; then
logo="[B]"
else
logo="〣"
fi
$MARKUP && printf "$(color b k W)%s$(color -)" "$logo" || printf " $logo "
;;
esac