mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/lib/byobu/logo: LP: #952724
- handle VTE_CJK_WIDTH=1 for asian locales
This commit is contained in:
commit
eef6b20668
2 changed files with 10 additions and 1 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,10 +1,15 @@
|
|||
byobu (5.17) unreleased; urgency=low
|
||||
|
||||
[ Dustin Kirkland ]
|
||||
* usr/bin/byobu-status:
|
||||
- performance improvement, testing for directory existence before
|
||||
mkdir -p saves time
|
||||
- localize a couple of function variables
|
||||
|
||||
[ Fumihito YOSHIDA (hito) ]
|
||||
* usr/lib/byobu/logo: LP: #952724
|
||||
- handle VTE_CJK_WIDTH=1 for asian locales
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 11 Mar 2012 07:23:06 -0500
|
||||
|
||||
byobu (5.16-0ubuntu1) precise; urgency=low
|
||||
|
|
|
@ -55,7 +55,11 @@ __logo() {
|
|||
*ubuntu*)
|
||||
if $MARKUP; then
|
||||
if [ "$UTF8" = "1" ] || [ "$BYOBU_BACKEND" = "tmux" ]; then
|
||||
color m W; printf " u "; color -
|
||||
if [ ! "$VTE_CJK_WIDTH" = "1" ] && [ ! "$VTE_CJK_WIDTH" = "wide" ] ; then
|
||||
color m W; printf " u "; color -
|
||||
else
|
||||
color m W; printf " U "; color -
|
||||
fi
|
||||
else
|
||||
color m W; printf " U "; color -
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue