mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* usr/lib/byobu/.constants:
- fix wireless utf8 icon bug, default to utf8 for tmux
This commit is contained in:
parent
a033d3d065
commit
6ddb45f808
2 changed files with 4 additions and 2 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue