mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 14:03:18 -07:00
usr/bin/byobu-launcher: don't launch if in a dumb terminal, LP: #612886
This commit is contained in:
parent
bc3fb1d384
commit
dee9211f26
2 changed files with 5 additions and 0 deletions
1
debian/changelog
vendored
1
debian/changelog
vendored
|
@ -2,6 +2,7 @@ byobu (3.2) unreleased; urgency=low
|
|||
|
||||
* usr/share/byobu/keybindings/f-keys: resize the screen as part of the
|
||||
F5/refresh, LP: #619899
|
||||
* usr/bin/byobu-launcher: don't launch if in a dumb terminal, LP: #612886
|
||||
|
||||
-- Dustin Kirkland <kirkland@ubuntu.com> Tue, 03 Aug 2010 15:19:23 -0400
|
||||
|
||||
|
|
|
@ -56,6 +56,10 @@ if [ ! -e "$HOME/.byobu/disable-autolaunch" ]; then
|
|||
;;
|
||||
esac
|
||||
;;
|
||||
dumb)
|
||||
# Dumb terminal, don't launch
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
exec $BYOBU_PREFIX/bin/byobu "$@"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue