* usr/lib/byobu/logo: LP: #1094716

- use the Apple unicode logo, rather than the Apple option symbol
  - this is only visible from Mac terminals (much like the Ubuntu logo
    is only visible from Ubuntu terminals)
This commit is contained in:
Dustin Kirkland 2013-01-09 09:43:37 -06:00
commit 8d8a662e7b
2 changed files with 8 additions and 2 deletions

5
debian/changelog vendored
View file

@ -1,6 +1,9 @@
byobu (5.24) unreleased; urgency=low byobu (5.24) unreleased; urgency=low
* UNRELEASED * usr/lib/byobu/logo: LP: #1094716
- use the Apple unicode logo, rather than the Apple option symbol
- this is only visible from Mac terminals (much like the Ubuntu logo
is only visible from Ubuntu terminals)
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 08 Jan 2013 22:39:57 -0600 -- Dustin Kirkland <kirkland@ubuntu.com> Tue, 08 Jan 2013 22:39:57 -0600

View file

@ -101,7 +101,10 @@ __logo() {
;; ;;
*mac*|*darwin*) *mac*|*darwin*)
if [ "$BYOBU_BACKEND" = "tmux" ] && [ "$BYOBU_CHARMAP" = "UTF-8" ]; then if [ "$BYOBU_BACKEND" = "tmux" ] && [ "$BYOBU_CHARMAP" = "UTF-8" ]; then
logo=" ⌘ " # The Apple option character
#logo=" ⌘ "
# The Apple logo -- only visible from Mac terminals
logo=""
else else
logo=" X " logo=" X "
fi fi