* 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:
James Hunt 2011-07-11 14:42:08 +01:00
commit 4b8709a8b9
3 changed files with 13 additions and 1 deletions

7
debian/changelog vendored
View file

@ -79,6 +79,13 @@ byobu (4.18) unreleased; urgency=low
this for all the relevant options that I could see in the screen
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
byobu (4.17-0ubuntu1) oneiric; urgency=low

View file

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

View file

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