From cc940007929ac86992de9265aed12cd806525988 Mon Sep 17 00:00:00 2001 From: Andre McCurdy Date: Mon, 29 Jul 2013 10:59:44 +0200 Subject: 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 Signed-off-by: Nicolas Dechesne Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/lib/oe/terminal.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/lib') 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 -- cgit v1.2.3-54-g00ecf