summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/terminal.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe/terminal.py')
-rw-r--r--meta/lib/oe/terminal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py
index be2a26bedd..a33abd733d 100644
--- a/meta/lib/oe/terminal.py
+++ b/meta/lib/oe/terminal.py
@@ -52,11 +52,11 @@ class XTerminal(Terminal):
52 raise UnsupportedTerminal(self.name) 52 raise UnsupportedTerminal(self.name)
53 53
54class Gnome(XTerminal): 54class Gnome(XTerminal):
55 command = 'gnome-terminal --disable-factory -t "{title}" -x {command}' 55 command = 'gnome-terminal -t "{title}" -x {command}'
56 priority = 2 56 priority = 2
57 57
58class Mate(XTerminal): 58class Mate(XTerminal):
59 command = 'mate-terminal --disable-factory -t "{title}" -x {command}' 59 command = 'mate-terminal -t "{title}" -x {command}'
60 priority = 2 60 priority = 2
61 61
62class Xfce(XTerminal): 62class Xfce(XTerminal):