mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-20 13:33:23 -07:00
* usr/bin/byobu, usr/bin/byobu-ctrl-a, usr/bin/byobu-disable,
usr/bin/byobu-enable, usr/bin/byobu-export, usr/bin/byobu-janitor, usr/bin/byobu-launch, usr/bin/byobu-launcher, usr/bin/byobu- launcher-install, usr/bin/byobu-launcher-uninstall, usr/bin/byobu- quiet, usr/bin/byobu-reconnect-sockets, usr/bin/byobu-select- backend, usr/bin/byobu-select-profile, usr/bin/byobu-shell, usr/bin/byobu-silent, usr/bin/byobu-status, usr/bin/byobu-status- detail, usr/bin/byobu-ugraph, usr/bin/byobu-ulevel, usr/lib/byobu/include/dirs, usr/share/byobu/profiles/byoburc: - big changeset to solve two annoying bugs, LP: #897473, #861291 - take over ~/.byoburc, and use it for storing global byobu shell configuration, namely BYOBU_PREFIX when necessary + note that some users might have previously used ~/.byoburc to store byobu-only screen configuration + these users should now use ~/.byobu/.screenrc instead (also because byobu now supports both screen and tmux) - on first run, if byobu is running outside of its normal location in /usr/bin/byobu, it will automatically detect and append the correct BYOBU_PREFIX value and store it in ~/.byoburc - ~/.byoburc is now read by all usr/bin/* in order to find the correct prefix
This commit is contained in:
parent
4799f21fa2
commit
9d1f4af492
24 changed files with 59 additions and 5 deletions
3
README
3
README
|
@ -20,8 +20,7 @@ install locally, using the following instructions...
|
||||||
5) Install:
|
5) Install:
|
||||||
make install
|
make install
|
||||||
6) Update your PATH and BYOBU_PREFIX environment variables
|
6) Update your PATH and BYOBU_PREFIX environment variables
|
||||||
echo "export BYOBU_PREFIX=$HOME/byobu" >> $HOME/.bashrc
|
echo "export PATH=$HOME/byobu/bin:$PATH" >> $HOME/.bashrc
|
||||||
echo "export PATH=$BYOBU_PREFIX/bin:$PATH" >> $HOME/.bashrc
|
|
||||||
. $HOME/.bashrc
|
. $HOME/.bashrc
|
||||||
7) Run:
|
7) Run:
|
||||||
byobu
|
byobu
|
||||||
|
|
21
debian/changelog
vendored
21
debian/changelog
vendored
|
@ -2,6 +2,27 @@ byobu (4.53) unreleased; urgency=low
|
||||||
|
|
||||||
* usr/share/byobu/profiles/common: LP: #900812
|
* usr/share/byobu/profiles/common: LP: #900812
|
||||||
- start screen with at least a 1 second message wait
|
- start screen with at least a 1 second message wait
|
||||||
|
* usr/bin/byobu, usr/bin/byobu-ctrl-a, usr/bin/byobu-disable,
|
||||||
|
usr/bin/byobu-enable, usr/bin/byobu-export, usr/bin/byobu-janitor,
|
||||||
|
usr/bin/byobu-launch, usr/bin/byobu-launcher, usr/bin/byobu-
|
||||||
|
launcher-install, usr/bin/byobu-launcher-uninstall, usr/bin/byobu-
|
||||||
|
quiet, usr/bin/byobu-reconnect-sockets, usr/bin/byobu-select-
|
||||||
|
backend, usr/bin/byobu-select-profile, usr/bin/byobu-shell,
|
||||||
|
usr/bin/byobu-silent, usr/bin/byobu-status, usr/bin/byobu-status-
|
||||||
|
detail, usr/bin/byobu-ugraph, usr/bin/byobu-ulevel,
|
||||||
|
usr/lib/byobu/include/dirs, usr/share/byobu/profiles/byoburc:
|
||||||
|
- big changeset to solve two annoying bugs, LP: #897473, #861291
|
||||||
|
- take over ~/.byoburc, and use it for storing global byobu shell
|
||||||
|
configuration, namely BYOBU_PREFIX when necessary
|
||||||
|
+ note that some users might have previously used ~/.byoburc to
|
||||||
|
store byobu-only screen configuration
|
||||||
|
+ these users should now use ~/.byobu/.screenrc instead (also
|
||||||
|
because byobu now supports both screen and tmux)
|
||||||
|
- on first run, if byobu is running outside of its normal location
|
||||||
|
in /usr/bin/byobu, it will automatically detect and append the
|
||||||
|
correct BYOBU_PREFIX value and store it in ~/.byoburc
|
||||||
|
- ~/.byoburc is now read by all usr/bin/* in order to find the
|
||||||
|
correct prefix
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Dec 2011 08:59:08 -0600
|
-- Dustin Kirkland <kirkland@ubuntu.com> Mon, 05 Dec 2011 08:59:08 -0600
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,20 @@ case "$0" in
|
||||||
*byobu-tmux) BYOBU_BACKEND="tmux" ;;
|
*byobu-tmux) BYOBU_BACKEND="tmux" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
# Source local byobu config
|
||||||
|
if [ -r "$HOME/.byoburc" ]; then
|
||||||
|
# Ensure that this configuration is usable
|
||||||
|
. "$HOME/.byoburc" || mv -f "$HOME/.byoburc".orig
|
||||||
|
fi
|
||||||
|
if [ -z "${BYOBU_PREFIX}" ]; then
|
||||||
|
# Find and export the installation location prefix
|
||||||
|
prefix="$(dirname $(dirname $(readlink -f $0)))"
|
||||||
|
if [ "$prefix" != "/usr" ]; then
|
||||||
|
echo "export BYOBU_PREFIX='$prefix'" >> "$HOME/.byoburc"
|
||||||
|
. "$HOME/.byoburc"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
@ -81,7 +95,7 @@ case $BYOBU_BACKEND in
|
||||||
# Use 256 colors, unless the user has overridden
|
# Use 256 colors, unless the user has overridden
|
||||||
[ -z "$SCREEN_TERM" ] && SCREEN_TERM="-2"
|
[ -z "$SCREEN_TERM" ] && SCREEN_TERM="-2"
|
||||||
PROFILE="-f $BYOBU_PREFIX/share/$PKG/profiles/tmuxrc"
|
PROFILE="-f $BYOBU_PREFIX/share/$PKG/profiles/tmuxrc"
|
||||||
sessions=$($BYOBU_BACKEND list-sessions) || true
|
sessions=$($BYOBU_BACKEND list-sessions 2>/dev/null) || true
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
# Allow override of default window list, with BYOBU_WINDOWS environment variable
|
# Allow override of default window list, with BYOBU_WINDOWS environment variable
|
||||||
|
@ -107,7 +121,7 @@ case $BYOBU_BACKEND in
|
||||||
fi
|
fi
|
||||||
# Some users want to maintain separate configurations
|
# Some users want to maintain separate configurations
|
||||||
# if they use both GNU Screen and byobu on the same system
|
# if they use both GNU Screen and byobu on the same system
|
||||||
if [ -r "$HOME/.byoburc" ]; then
|
if [ -r "$BYOBU_CONFIG_DIR/.screenrc" ]; then
|
||||||
PROFILE="-c $BYOBU_PREFIX/share/$PKG/profiles/byoburc"
|
PROFILE="-c $BYOBU_PREFIX/share/$PKG/profiles/byoburc"
|
||||||
else
|
else
|
||||||
PROFILE="-c $BYOBU_PREFIX/share/$PKG/profiles/screenrc"
|
PROFILE="-c $BYOBU_PREFIX/share/$PKG/profiles/screenrc"
|
||||||
|
|
|
@ -26,6 +26,7 @@ EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@ elif [ "$BYOBU_SOURCED_PROFILE" != "1" ] && [ "$LC_BYOBU" != "0" ] && [ "$BYOBU_
|
||||||
unset _tty
|
unset _tty
|
||||||
BYOBU_SOURCED_PROFILE=1
|
BYOBU_SOURCED_PROFILE=1
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
# Ensure that autolaunch is not explicitly disabled
|
# Ensure that autolaunch is not explicitly disabled
|
||||||
|
|
|
@ -21,6 +21,7 @@ PKG="byobu"
|
||||||
# Bad things happen if you run byobu, but you don't own your $HOME
|
# Bad things happen if you run byobu, but you don't own your $HOME
|
||||||
# ie, rather than "sudo byobu", you must run "sudo -H byobu"
|
# ie, rather than "sudo byobu", you must run "sudo -H byobu"
|
||||||
if [ -O "$HOME" ]; then
|
if [ -O "$HOME" ]; then
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
if [ -e "$BYOBU_CONFIG_DIR/disable-autolaunch" ]; then
|
if [ -e "$BYOBU_CONFIG_DIR/disable-autolaunch" ]; then
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
# ./debian/rules get-po
|
# ./debian/rules get-po
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#---------------------------------------------------------------------
|
#---------------------------------------------------------------------
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,7 @@
|
||||||
# command-line option.
|
# command-line option.
|
||||||
|
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
[ -z "${BYOBU_PREFIX}" ] && export BYOBU_PREFIX="/usr" || export BYOBU_PREFIX
|
||||||
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
. "${BYOBU_PREFIX}/lib/${PKG}/include/common"
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
PKG="byobu"
|
PKG="byobu"
|
||||||
|
|
||||||
# Some users build and install byobu themselves, rather than from a distro
|
# Some users build and install byobu themselves, rather than from a distro
|
||||||
|
[ -r "$HOME/.byoburc" ] && . "$HOME/.byoburc"
|
||||||
[ -n "$BYOBU_PREFIX" ] || BYOBU_PREFIX="/usr"
|
[ -n "$BYOBU_PREFIX" ] || BYOBU_PREFIX="/usr"
|
||||||
|
|
||||||
# Create and export the user configuration directory
|
# Create and export the user configuration directory
|
||||||
|
|
|
@ -24,4 +24,4 @@
|
||||||
|
|
||||||
source $BYOBU_CONFIG_DIR/profile
|
source $BYOBU_CONFIG_DIR/profile
|
||||||
source $BYOBU_WINDOWS
|
source $BYOBU_WINDOWS
|
||||||
source $HOME/.byoburc
|
source $BYOBU_CONFIG_DIR/.screenrc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue