* etc/byobu/backend, usr/bin/byobu, usr/bin/byobu-config,

usr/bin/byobu-select-session, usr/lib/byobu/include/common:
  - bump up to the 5.x series
  - change default backend from screen to tmux
This commit is contained in:
Dustin Kirkland 2011-12-24 10:12:15 -06:00
commit 426ee14149
6 changed files with 10 additions and 7 deletions

7
debian/changelog vendored
View file

@ -1,6 +1,9 @@
byobu (4.56) unreleased; urgency=low byobu (5.0) unreleased; urgency=low
* UNRELEASED * etc/byobu/backend, usr/bin/byobu, usr/bin/byobu-config,
usr/bin/byobu-select-session, usr/lib/byobu/include/common:
- bump up to the 5.x series
- change default backend from screen to tmux
-- Dustin Kirkland <kirkland@ubuntu.com> Sun, 18 Dec 2011 21:35:00 -0600 -- Dustin Kirkland <kirkland@ubuntu.com> Sun, 18 Dec 2011 21:35:00 -0600

View file

@ -1,4 +1,4 @@
# BYOBU_BACKEND can currently be "screen" or "tmux" # BYOBU_BACKEND can currently be "screen" or "tmux"
# Override this on a per-user basis by editing "$BYOBU_CONFIG_DIR/backend" # Override this on a per-user basis by editing "$BYOBU_CONFIG_DIR/backend"
# or by launching either "byobu-screen" or "byobu-tmux" instead of "byobu". # or by launching either "byobu-screen" or "byobu-tmux" instead of "byobu".
BYOBU_BACKEND="screen" BYOBU_BACKEND="tmux"

View file

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
VERSION=4.56 VERSION=5.0
PKG="byobu" PKG="byobu"
# All sorts of things go wrong if you don't own your $HOME dir. # All sorts of things go wrong if you don't own your $HOME dir.

View file

@ -30,7 +30,7 @@ PKG="byobu"
HOME=os.getenv("HOME") HOME=os.getenv("HOME")
USER=os.getenv("USER") USER=os.getenv("USER")
BYOBU_CONFIG_DIR=os.getenv("BYOBU_CONFIG_DIR", HOME+"/.byobu") BYOBU_CONFIG_DIR=os.getenv("BYOBU_CONFIG_DIR", HOME+"/.byobu")
BYOBU_BACKEND=os.getenv("BYOBU_BACKEND", "screen") BYOBU_BACKEND=os.getenv("BYOBU_BACKEND", "tmux")
BYOBU_SOCKETDIR=os.getenv("SOCKETDIR", "/var/run/screen") BYOBU_SOCKETDIR=os.getenv("SOCKETDIR", "/var/run/screen")
BYOBU_PREFIX = os.getenv("BYOBU_PREFIX", "/usr") BYOBU_PREFIX = os.getenv("BYOBU_PREFIX", "/usr")
SHARE=BYOBU_PREFIX+'/share/'+PKG SHARE=BYOBU_PREFIX+'/share/'+PKG

View file

@ -24,7 +24,7 @@ PKG = "byobu"
SHELL = os.getenv("SHELL", "/bin/bash") SHELL = os.getenv("SHELL", "/bin/bash")
HOME=os.getenv("HOME") HOME=os.getenv("HOME")
BYOBU_CONFIG_DIR=os.getenv("BYOBU_CONFIG_DIR", HOME+"/.byobu") BYOBU_CONFIG_DIR=os.getenv("BYOBU_CONFIG_DIR", HOME+"/.byobu")
BYOBU_BACKEND=os.getenv("BYOBU_BACKEND", "screen") BYOBU_BACKEND=os.getenv("BYOBU_BACKEND", "tmux")
choice = "" choice = ""
sessions = [] sessions = []
text = [] text = []

View file

@ -27,7 +27,7 @@ if [ -z "${BYOBU_INCLUDED_LIBS}" ]; then
[ -r "/etc/$PKG/backend" ] && . "/etc/$PKG/backend" [ -r "/etc/$PKG/backend" ] && . "/etc/$PKG/backend"
[ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend" [ -r "$BYOBU_CONFIG_DIR/backend" ] && . "$BYOBU_CONFIG_DIR/backend"
# Just in case there's no config file at all # Just in case there's no config file at all
[ -z "${BYOBU_BACKEND}" ] && BYOBU_BACKEND=screen [ -z "${BYOBU_BACKEND}" ] && BYOBU_BACKEND=tmux
fi fi
# Creating backend cache # Creating backend cache