* usr/bin/byobu-config:

- fix broken fix for LP: #1255484
This commit is contained in:
Dustin Kirkland 2013-12-02 18:44:58 -06:00
commit c0edb9c5d7
2 changed files with 3 additions and 0 deletions

2
debian/changelog vendored
View file

@ -2,6 +2,8 @@ byobu (5.67) unreleased; urgency=low
* usr/bin/byobu, usr/lib/byobu/include/constants:
- support global variable for default window name
* usr/bin/byobu-config:
- fix broken fix for LP: #1255484
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 29 Nov 2013 09:46:48 -0600

View file

@ -49,6 +49,7 @@ PKG = "byobu"
HOME = os.getenv("HOME")
USER = os.getenv("USER")
BYOBU_CONFIG_DIR = os.getenv("BYOBU_CONFIG_DIR", HOME + "/.byobu")
BYOBU_RUN_DIR = os.getenv("BYOBU_RUN_DIR", HOME + "/.cache/byobu")
BYOBU_BACKEND = os.getenv("BYOBU_BACKEND", "tmux")
BYOBU_SOCKETDIR = os.getenv("SOCKETDIR", "/var/run/screen")
BYOBU_PREFIX = os.getenv("BYOBU_PREFIX", "/usr")