diff options
-rw-r--r-- | meta/lib/oe/terminal.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index 71ffc87019..4412bc14c1 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -104,6 +104,10 @@ class Rxvt(XTerminal): | |||
104 | command = 'rxvt -T "{title}" -e {command}' | 104 | command = 'rxvt -T "{title}" -e {command}' |
105 | priority = 1 | 105 | priority = 1 |
106 | 106 | ||
107 | class URxvt(XTerminal): | ||
108 | command = 'urxvt -T "{title}" -e {command}' | ||
109 | priority = 1 | ||
110 | |||
107 | class Screen(Terminal): | 111 | class Screen(Terminal): |
108 | command = 'screen -D -m -t "{title}" -S devshell {command}' | 112 | command = 'screen -D -m -t "{title}" -S devshell {command}' |
109 | 113 | ||