mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
parent
58113f2d4e
commit
043a0066ae
2 changed files with 7 additions and 3 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,5 +1,6 @@
|
|||
byobu (4.55) unreleased; urgency=low
|
||||
|
||||
[ Dustin Kirkland ]
|
||||
* usr/lib/byobu/entropy, usr/lib/byobu/include/shutil,
|
||||
usr/lib/byobu/Makefile.am, usr/share/byobu/status/status,
|
||||
usr/share/man/man1/byobu.1:
|
||||
|
@ -7,6 +8,10 @@ byobu (4.55) unreleased; urgency=low
|
|||
- must use cat, can't use read in dash here
|
||||
- use yellow on grey
|
||||
|
||||
[ Will Ellwood ]
|
||||
* usr/lib/byobu/disk: LP: #904824
|
||||
- fix escaping issue
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 09 Dec 2011 20:38:02 -0600
|
||||
|
||||
byobu (4.54-0ubuntu1) precise; urgency=low
|
||||
|
|
|
@ -44,9 +44,8 @@ __disk() {
|
|||
g*|G*) unit="$ICON_GB" ;;
|
||||
t*|T*) unit="$ICON_TB" ;;
|
||||
esac
|
||||
_UNIT=${unit}; _SIZE=${size}; _PCT=${pct};
|
||||
color b M W; printf "$_SIZE"; color -; color M W; printf "${_UNIT}"; color -;
|
||||
color b M W; printf "$_PCT"; color -; color M W; printf "$PCT" ; color --;
|
||||
color b M W; printf "%s" "$size"; color -; color M W; printf "%s" "$unit"; color -;
|
||||
color b M W; printf "%s" "$pct"; color -; color M W; printf "%s" "$PCT"; color --;
|
||||
}
|
||||
|
||||
# vi: syntax=sh ts=4 noexpandtab
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue