summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index 2ac39df9e1..a0c166d884 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -102,6 +102,10 @@ class Rxvt(XTerminal):
102 command = 'rxvt -T "{title}" -e {command}' 102 command = 'rxvt -T "{title}" -e {command}'
103 priority = 1 103 priority = 1
104 104
105class URxvt(XTerminal):
106 command = 'urxvt -T "{title}" -e {command}'
107 priority = 1
108
105class Screen(Terminal): 109class Screen(Terminal):
106 command = 'screen -D -m -t "{title}" -S devshell {command}' 110 command = 'screen -D -m -t "{title}" -S devshell {command}'
107 111