mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-21 22:13:19 -07:00
parent
8848937dd1
commit
c0edb9c5d7
2 changed files with 3 additions and 0 deletions
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -2,6 +2,8 @@ byobu (5.67) unreleased; urgency=low
|
||||||
|
|
||||||
* usr/bin/byobu, usr/lib/byobu/include/constants:
|
* usr/bin/byobu, usr/lib/byobu/include/constants:
|
||||||
- support global variable for default window name
|
- 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
|
-- Dustin Kirkland <kirkland@ubuntu.com> Fri, 29 Nov 2013 09:46:48 -0600
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,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_RUN_DIR = os.getenv("BYOBU_RUN_DIR", HOME + "/.cache/byobu")
|
||||||
BYOBU_BACKEND = os.getenv("BYOBU_BACKEND", "tmux")
|
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")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue