diff options
author | Andre McCurdy <andre.mccurdy@entropic.com> | 2013-07-29 10:59:44 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-31 06:59:55 +0100 |
commit | cc940007929ac86992de9265aed12cd806525988 (patch) | |
tree | 1c7194b730e4d7081d7c030f74b2d2b923428c17 /meta/lib/oe/terminal.py | |
parent | e472443db2978239c1c8a783bf9ea04f533b45d4 (diff) | |
download | poky-cc940007929ac86992de9265aed12cd806525988.tar.gz |
lib/oe/terminal.py: add support for MATE desktop terminals
A simple clone of the corresponding Gnome class. Without this, devshell
fails completely on a default installation of MATE desktop Linux Mint 15.
(From OE-Core rev: 8cc078a9c679845464c59028f584d7aba098cc1f)
Signed-off-by: Andre McCurdy <andre.mccurdy@entropic.com>
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/terminal.py')
-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 4502f34f56..be2a26bedd 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -55,6 +55,10 @@ class Gnome(XTerminal): | |||
55 | command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' | 55 | command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' |
56 | priority = 2 | 56 | priority = 2 |
57 | 57 | ||
58 | class Mate(XTerminal): | ||
59 | command = 'mate-terminal --disable-factory -t "{title}" -x {command}' | ||
60 | priority = 2 | ||
61 | |||
58 | class Xfce(XTerminal): | 62 | class Xfce(XTerminal): |
59 | command = 'Terminal -T "{title}" -e "{command}"' | 63 | command = 'Terminal -T "{title}" -e "{command}"' |
60 | priority = 2 | 64 | priority = 2 |