Comment 4 for bug 868713

Revision history for this message
Paul Sladen (sladen) wrote : Re: Mono: please add up/down triangles for Byobu terminal multiplexer

Dustin has pointed me at:

  /usr/lib/byobu/.constants

which contains:

  if [ "$UTF8" = "1" ] || [ "$BYOBU_BACKEND" = "tmux" ]; then
        ICON_C="℃"
        ICON_F="℉"
        ICON_RD="◀"
        ICON_WR="▶"
        ICON_MAIL="⍌"
        ICON_UP="▲"
        ICON_DN="▼"
        ICON_TRASH="♸"
        ICON_WIFI="⚚"
  else
        ICON_C="C"
        ICON_F="F"
        ICON_RD="<"
        ICON_WR=">"
        ICON_MAIL="[M]"
        ICON_UP="^"
        ICON_DN="v"
        ICON_TRASH="T"
        ICON_WIFI=
  fi

Attached Unicode set file, a la '/usr/share/bdf2psf/' from:

  print '\n'.join(sorted([hex(ord(c)).replace('0x','U+').upper() for c in u'℃℉◀▶⍌▲▼♸⚚']))