mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-22 06:23:19 -07:00
* screen-launcher: don't use the -x argument if launching a new screen,
as this fails to launch default windows, LP: #375768 Signed-off-by: Dustin Kirkland <kirkland@canonical.com>
This commit is contained in:
parent
ef3262d447
commit
39dfc3e694
2 changed files with 10 additions and 3 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -18,12 +18,14 @@ byobu (2.4) unreleased; urgency=low
|
|||
the chosen windows; but on refresh, only reload the chosen profile;
|
||||
revert previous hack that did this by creating a temporary config
|
||||
file and broke on hardy, LP: #375309
|
||||
* screen-launcher: don't use the -x argument if launching a new screen,
|
||||
as this fails to launch default windows, LP: #375768
|
||||
* debian/control: suggest vim, for better handling of status details
|
||||
|
||||
[ David Duffey ]
|
||||
* rpm/byobu.spec: initial specfile for RH packaging
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 14 May 2009 13:03:53 -0500
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Thu, 14 May 2009 13:22:17 -0500
|
||||
|
||||
byobu (2.3-0ubuntu1) karmic; urgency=low
|
||||
|
||||
|
|
|
@ -25,5 +25,10 @@
|
|||
# and friends can pick it up before going into screen
|
||||
[ -x /bin/bash ] && /bin/true | /bin/bash -i -s
|
||||
|
||||
# Launch screen
|
||||
exec screen -xRR
|
||||
arg="-xRR"
|
||||
out=`screen -ls 2>/dev/null`
|
||||
if echo "$out" | grep -qsi "^No Sockets found in "; then
|
||||
# Start new session
|
||||
arg=""
|
||||
fi
|
||||
exec screen "$arg"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue