mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-20 21:43:19 -07:00
* AUTHORS, CONTRIBUTING, NEWS, README, README.md:
- Flatten these files into a single README.md - Minor updates in the process
This commit is contained in:
parent
5281a8261a
commit
57cc3ac07c
6 changed files with 80 additions and 54 deletions
4
AUTHORS
4
AUTHORS
|
@ -1,4 +0,0 @@
|
||||||
Dustin Kirkland <kirkland@byobu.org>
|
|
||||||
Nick Barcet <nick.barcet@ubuntu.com>
|
|
||||||
Raphaël Pinson <raphink@ubuntu.com>
|
|
||||||
Derek Carter <goozbach@friocorte.com>
|
|
11
CONTRIBUTING
11
CONTRIBUTING
|
@ -1,11 +0,0 @@
|
||||||
You may contribute to Byobu by branching the source from Launchpad (ideally), or by forking the project on Github (less ideally):
|
|
||||||
|
|
||||||
$ bzr branch lp:byobu
|
|
||||||
|
|
||||||
$ git clone git://github.com/dustinkirkland/byobu.git
|
|
||||||
|
|
||||||
You commit changes locally, and then propose a merge in Launchpad (ideally), or submit a pull request on Github (less ideally).
|
|
||||||
|
|
||||||
As for coding standards, please use tabs, rather than spaces. Thanks!
|
|
||||||
|
|
||||||
:-Dustin
|
|
1
NEWS
1
NEWS
|
@ -1 +0,0 @@
|
||||||
http://byobu.org/
|
|
37
README
37
README
|
@ -1,37 +0,0 @@
|
||||||
For more information about this package, please see:
|
|
||||||
* http://byobu.org
|
|
||||||
|
|
||||||
If Byobu is not packaged for your Linux or UNIX OS, or if you do not have
|
|
||||||
administrative privileges in order to install Byobu, you may be able to
|
|
||||||
install locally, using the following instructions...
|
|
||||||
|
|
||||||
0) If you pull the source from the upstream bzr or git:
|
|
||||||
bzr branch lp:byobu && cd byobu
|
|
||||||
git clone git://github.com/dustinkirkland/byobu.git byobu-src && cd byobu-src
|
|
||||||
./debian/rules autoconf
|
|
||||||
1) Or download the latest officially released version from:
|
|
||||||
https://launchpad.net/byobu/+download
|
|
||||||
2) Extract:
|
|
||||||
tar zxvf byobu*.tar.gz && cd byobu*
|
|
||||||
3) Configure:
|
|
||||||
./configure --prefix="$HOME/byobu"
|
|
||||||
4) OPTIONAL: Use python from your environment, rather than from your distro
|
|
||||||
echo "export BYOBU_PYTHON='/usr/bin/env python'" >> $HOME/.bashrc
|
|
||||||
5) Build:
|
|
||||||
make
|
|
||||||
6) Install:
|
|
||||||
make install
|
|
||||||
7) Update your PATH and BYOBU_PREFIX environment variables
|
|
||||||
echo "export PATH=$HOME/byobu/bin:$PATH" >> $HOME/.bashrc
|
|
||||||
. $HOME/.bashrc
|
|
||||||
8) Run:
|
|
||||||
byobu
|
|
||||||
|
|
||||||
Note that you will need to have a few dependencies installed:
|
|
||||||
* tmux >= 1.5 and screen
|
|
||||||
* python-newt (if you want to use Byobu's configuration utility)
|
|
||||||
* gsed (if your sed implementation doesn't support -i)
|
|
||||||
* coreutils
|
|
||||||
|
|
||||||
Dustin Kirkland <kirkland@byobu.org>
|
|
||||||
2015-03-01
|
|
74
README.md
Normal file
74
README.md
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
Byobu is a GPLv3 open source text-based window manager and terminal multiplexer. It was originally designed to provide elegant enhancements to the otherwise functional, plain, practical GNU Screen, for the Ubuntu server distribution. Byobu now includes an enhanced profiles, convenient keybindings, configuration utilities, and toggle-able system status notifications for both the GNU Screen window manager and the more modern Tmux terminal multiplexer, and works on most Linux, BSD, and Mac distributions.
|
||||||
|
|
||||||
|
For more information about this package, please visit:
|
||||||
|
http://byobu.org
|
||||||
|
|
||||||
|
If *Byobu* is not packaged for your Linux or UNIX OS, or if you do not have administrative privileges in order to install Byobu, you may be able to install locally, using the following instructions...
|
||||||
|
|
||||||
|
### INSTALATION
|
||||||
|
1. If you pull the source from the upstream bzr or git:
|
||||||
|
|
||||||
|
` bzr branch lp:byobu && cd byobu`
|
||||||
|
`git clone git://github.com/dustinkirkland/byobu.git byobu-src`
|
||||||
|
`cd byobu-src ./debian/rules autoconf`
|
||||||
|
|
||||||
|
2. Or download the latest officially released version from:
|
||||||
|
https://launchpad.net/byobu/+download
|
||||||
|
|
||||||
|
3. Extract:
|
||||||
|
|
||||||
|
`tar zxvf byobu*.tar.gz && cd byobu*`
|
||||||
|
|
||||||
|
4. Configure:
|
||||||
|
|
||||||
|
`./configure --prefix="$HOME/byobu"`
|
||||||
|
|
||||||
|
***OPTIONAL*** : You may use python from your environment, rather than from your distro
|
||||||
|
|
||||||
|
***echo "export BYOBU_PYTHON='/usr/bin/env python'" >> $HOME/.bashrc***
|
||||||
|
|
||||||
|
5. Build:
|
||||||
|
`make`
|
||||||
|
|
||||||
|
6. Install:
|
||||||
|
|
||||||
|
`make install`
|
||||||
|
|
||||||
|
7. Update your `PATH` and `BYOBU_PREFIX` environment variables
|
||||||
|
|
||||||
|
`echo "export PATH=$HOME/byobu/bin:$PATH" >> $HOME/.bashrc`
|
||||||
|
`. $HOME/.bashrc`
|
||||||
|
|
||||||
|
8. Run:
|
||||||
|
|
||||||
|
`byobu`
|
||||||
|
|
||||||
|
> Note that you will need to have a few dependencies installed:
|
||||||
|
* tmux >= 1.5 and screen
|
||||||
|
* python-newt (if you want to use Byobu's configuration utility)
|
||||||
|
* gsed (if your sed implementation doesn't support -i)
|
||||||
|
|
||||||
|
### CONTRIBUTION
|
||||||
|
|
||||||
|
You may contribute to Byobu by branching the source from Launchpad (ideally), or by forking the project on Github (less ideally):
|
||||||
|
|
||||||
|
$ bzr branch lp:byobu
|
||||||
|
|
||||||
|
$ git clone git://github.com/dustinkirkland/byobu.git
|
||||||
|
|
||||||
|
You commit changes locally, and then propose a merge in Launchpad (ideally), or submit a pull request on Github (less ideally).
|
||||||
|
|
||||||
|
As for coding standards, please use tabs, rather than spaces. Thanks!
|
||||||
|
|
||||||
|
### AUTHORS
|
||||||
|
Dustin Kirkland <kirkland@byobu.org>
|
||||||
|
Nick Barcet <nick.barcet@ubuntu.com>
|
||||||
|
Raphaël Pinson <raphink@ubuntu.com>
|
||||||
|
Derek Carter <goozbach@friocorte.com>
|
||||||
|
|
||||||
|
### LICENSE:
|
||||||
|
https://github.com/dustinkirkland/byobu/blob/master/COPYING
|
||||||
|
|
||||||
|
Dustin Kirkland <kirkland@byobu.org>
|
||||||
|
|
||||||
|
2019-11-29
|
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -15,7 +15,12 @@ byobu (5.130) unreleased; urgency=medium
|
||||||
- ignore new pep8 rules around hard tabs and whitespaces, related
|
- ignore new pep8 rules around hard tabs and whitespaces, related
|
||||||
to bug 1843729
|
to bug 1843729
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:25:25 -0600
|
[ saroj990 and Dustin Kirkland ]
|
||||||
|
* AUTHORS, CONTRIBUTING, NEWS, README, README.md:
|
||||||
|
- Flatten these files into a single README.md
|
||||||
|
- Minor updates in the process
|
||||||
|
|
||||||
|
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:33:34 -0600
|
||||||
|
|
||||||
byobu (5.129-0ubuntu1) eoan; urgency=medium
|
byobu (5.129-0ubuntu1) eoan; urgency=medium
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue