mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 14:24:39 -07:00
* usr/bin/byobu-status: LP: #1003938
- go through cat due to possible tmux/epoll bug
This commit is contained in:
parent
013f05a47a
commit
0d65b49fb5
2 changed files with 8 additions and 2 deletions
5
debian/changelog
vendored
5
debian/changelog
vendored
|
@ -1,5 +1,6 @@
|
|||
byobu (5.29) unreleased; urgency=low
|
||||
|
||||
[ Dustin Kirkland ]
|
||||
* README:
|
||||
- update build docs referencing git repo
|
||||
* usr/lib/byobu/cpu_freq, usr/lib/byobu/date, usr/lib/byobu/entropy,
|
||||
|
@ -69,6 +70,10 @@ byobu (5.29) unreleased; urgency=low
|
|||
- fix regression with Python2.6 compatibility, use Popen instead of
|
||||
check_output
|
||||
|
||||
[ Przemek Wesolek ]
|
||||
* usr/bin/byobu-status: LP: #1003938
|
||||
- go through cat due to possible tmux/epoll bug
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 15 Jan 2013 19:26:40 -0600
|
||||
|
||||
byobu (5.28-0ubuntu1) raring; urgency=low
|
||||
|
|
|
@ -55,8 +55,9 @@ case "$BYOBU_BACKEND" in
|
|||
fi
|
||||
for w in $width; do
|
||||
if [ "$w" != "$w_last" ]; then
|
||||
tmux set -g status-left-length $(($w*1/4)) >/dev/null 2>&1
|
||||
tmux set -g status-right-length $(($w*3/4)) >/dev/null 2>&1
|
||||
# go through cat due to possible tmux/epoll bug
|
||||
tmux set -g status-left-length $(($w*1/4)) | cat >/dev/null 2>&1
|
||||
tmux set -g status-right-length $(($w*3/4)) | cat >/dev/null 2>&1
|
||||
printf "$w" > $BYOBU_RUN_DIR/width
|
||||
break
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue