diff options
author | Andre McCurdy <andre.mccurdy@entropic.com> | 2013-07-29 10:59:44 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2013-07-30 07:25:38 -0700 |
commit | 8cc078a9c679845464c59028f584d7aba098cc1f (patch) | |
tree | e4d2ca95dbbaab2d587892f8eac7fe1e6c609753 /meta/lib/oe | |
parent | ecdbaeeef11fd7732fffe992c7aa3cfa28eaabff (diff) | |
download | openembedded-core-8cc078a9c679845464c59028f584d7aba098cc1f.tar.gz openembedded-core-8cc078a9c679845464c59028f584d7aba098cc1f.tar.bz2 openembedded-core-8cc078a9c679845464c59028f584d7aba098cc1f.zip |
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.
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>
Diffstat (limited to 'meta/lib/oe')
-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): command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' priority = 2 +class Mate(XTerminal): + command = 'mate-terminal --disable-factory -t "{title}" -x {command}' + priority = 2 + class Xfce(XTerminal): command = 'Terminal -T "{title}" -e "{command}"' priority = 2 |