| Submitter | Christopher Larson |
|---|---|
| Date | Aug. 9, 2011, 6:06 p.m. |
| Message ID | <eb2be5e5a2cd0348ee06d25278d3622cfe0c31cb.1312903907.git.kergoth@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/9561/ |
| State | New, archived |
| Headers | show |
Comments
Patch
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index 3767935..3965462 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py @@ -70,7 +70,12 @@ class Rxvt(XTerminal): priority = 1 class Screen(Terminal): - command = 'screen -D -m -t "{title}" {command}' + command = 'screen -D -m -t "{title}" -S devshell {command}' + + def __init__(self, command, title=None, env=None): + Terminal.__init__(self, command, title, env) + logger.warn('Screen started. Please connect in another terminal with ' + '"screen -r devshell"') def prioritized():