* usr/lib/byobu/logo:

- Add logo for OpenWrt
This commit is contained in:
Jeffery To 2019-05-27 03:08:03 +08:00
commit 72485d5dfa
2 changed files with 9 additions and 0 deletions

5
debian/changelog vendored
View file

@ -1,5 +1,6 @@
byobu (5.128) unreleased; urgency=medium
[ Dustin Kirkland ]
* usr/bin/ctail:
- Quotes are needed around "$@" to keep parameters from splitting
on spaces.
@ -18,6 +19,10 @@ byobu (5.128) unreleased; urgency=medium
All colors in command prompt should be escaped with [ ]
- https://github.com/dustinkirkland/byobu/pull/30
[ Jeffery To ]
* usr/lib/byobu/logo:
- Add logo for OpenWrt
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 12 Aug 2018 11:37:11 -0500
byobu (5.127-0ubuntu1) cosmic; urgency=medium

View file

@ -111,6 +111,10 @@ __logo() {
logo=" lm "
$MARKUP && printf "$(color g w)$logo$(color -)$(color g w)$(color -) " || printf "$logo"
;;
*openwrt*)
logo="OWrt"
$MARKUP && printf "$(color b colour66 W)%s$(color -)" "$logo" || printf "$logo"
;;
*red*hat*|*rhel*)
logo=" RH "
$MARKUP && printf "$(color R k)%s$(color -)" "$logo" || printf "$logo"