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 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 |