* usr/bin/byobu-ulevel:

- Added faces_2 theme.
  - Allow permissive mode to be set via command-line ('-p').
* usr/lib/byobu/time_binary: remove stray trailing space character in
  output.
This commit is contained in:
Dustin Kirkland 2011-07-15 15:21:28 -05:00
commit 099bfe6d47
3 changed files with 13 additions and 1 deletions

7
debian/changelog vendored
View file

@ -84,6 +84,13 @@ byobu (4.18) unreleased; urgency=low
this for all the relevant options that I could see in the screen this for all the relevant options that I could see in the screen
manpage. manpage.
[ James Hunt ]
* usr/bin/byobu-ulevel:
- Added faces_2 theme.
- Allow permissive mode to be set via command-line ('-p').
* usr/lib/byobu/time_binary: remove stray trailing space character in
output.
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 29 Jun 2011 02:26:28 +0000 -- Dustin Kirkland <kirkland@ubuntu.com> Wed, 29 Jun 2011 02:26:28 +0000
byobu (4.17-0ubuntu1) oneiric; urgency=low byobu (4.17-0ubuntu1) oneiric; urgency=low

View file

@ -46,6 +46,7 @@ hearts_2=(♡ ♥)
squares_2=(◻ ◼) squares_2=(◻ ◼)
squares_small_2=(◽ ◾) squares_small_2=(◽ ◾)
stars_2=(☆ ★) stars_2=(☆ ★)
faces_2=(☹ ☺)
#------------------------------ #------------------------------
# Themes with 4 values. # Themes with 4 values.
@ -443,6 +444,10 @@ do
newline=-n newline=-n
;; ;;
p)
permissive=y
;;
q) q)
quiet=y quiet=y
;; ;;

View file

@ -169,5 +169,5 @@ else
display_time="${hh}${sep}${hm}${hs}${ending}" display_time="${hh}${sep}${hm}${hs}${ending}"
fi fi
echo -ne "$display_time " echo -ne "$display_time"
exit 0 exit 0