* usr/lib/byobu/.constants:

- fix wireless utf8 icon bug, default to utf8 for tmux
This commit is contained in:
Dustin Kirkland 2011-08-16 14:27:40 -07:00
commit 6ddb45f808
2 changed files with 4 additions and 2 deletions

2
debian/changelog vendored
View file

@ -58,6 +58,8 @@ byobu (4.30) unreleased; urgency=low
usr/lib/byobu/updates_available:
- must separate run dirs for tmux/screen run status scripts;
otherwise, calculated rates are off
* usr/lib/byobu/.constants:
- fix wireless utf8 icon bug, default to utf8 for tmux
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 11 Aug 2011 10:31:31 -0500

View file

@ -21,7 +21,7 @@
PKG="byobu"
# UTF8 support in the hardstatus is coming one day in Screen
if [ "$UTF8" = "1" ]; then
if [ "$UTF8" = "1" ] || [ "$BYOBU_BACKEND" = "tmux" ]; then
ICON_C="℃"
ICON_F="℉"
ICON_RD="◀"
@ -30,7 +30,7 @@ if [ "$UTF8" = "1" ]; then
ICON_UP="▲"
ICON_DN="▼"
ICON_TRASH="♸"
ICON_WIFI=ICON="⚚"
ICON_WIFI="⚚"
else
ICON_C="C"
ICON_F="F"