mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-20 13:33:23 -07:00
* usr/lib/byobu/include/select-session.py:
- Force UTF-8 when attaching in `select-session.py` - https://github.com/dustinkirkland/byobu/pull/35
This commit is contained in:
parent
5f7030a0a4
commit
b2e3ff4463
2 changed files with 7 additions and 2 deletions
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -5,7 +5,12 @@ byobu (5.130) unreleased; urgency=medium
|
||||||
- add Raspbian colors / logo
|
- add Raspbian colors / logo
|
||||||
+ https://github.com/dustinkirkland/byobu/pull/34
|
+ https://github.com/dustinkirkland/byobu/pull/34
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:14:50 -0600
|
[ bryango ]
|
||||||
|
* usr/lib/byobu/include/select-session.py:
|
||||||
|
- Force UTF-8 when attaching in `select-session.py`
|
||||||
|
- https://github.com/dustinkirkland/byobu/pull/35
|
||||||
|
|
||||||
|
-- Dustin Kirkland <kirkland@x250> Fri, 29 Nov 2019 15:18:53 -0600
|
||||||
|
|
||||||
byobu (5.129-0ubuntu1) eoan; urgency=medium
|
byobu (5.129-0ubuntu1) eoan; urgency=medium
|
||||||
|
|
||||||
|
|
|
@ -132,7 +132,7 @@ def attach_session(session):
|
||||||
cull_zombies(session_name)
|
cull_zombies(session_name)
|
||||||
# must use the binary, not the wrapper!
|
# must use the binary, not the wrapper!
|
||||||
if backend == "tmux":
|
if backend == "tmux":
|
||||||
os.execvp("tmux", ["tmux", "attach", "-t", session_name])
|
os.execvp("tmux", ["tmux", "-u", "attach", "-t", session_name])
|
||||||
else:
|
else:
|
||||||
os.execvp("screen", ["screen", "-AOxRR", session_name])
|
os.execvp("screen", ["screen", "-AOxRR", session_name])
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue