diff options
author | Rodrigo Chiossi <rodrigo.chiossi@intel.com> | 2015-01-06 12:18:54 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 14:53:54 +0000 |
commit | da35877db811f440b776bf56ea863da3e7a99100 (patch) | |
tree | 01826fa7b286b9806da030a4227bb21969e7377b /meta | |
parent | 95bf2ab4b0e436be942c9a18ceb985963ce72035 (diff) | |
download | poky-da35877db811f440b776bf56ea863da3e7a99100.tar.gz |
lib/oe/terminal: add support for Terminology terminal emulator
Terminology is the default Enlightenment terminal emulator
(From OE-Core rev: f3da8570a977809fadb08315f384726b80f5ee01)
Signed-off-by: Rodrigo Chiossi <rodrigo.chiossi@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 273590bb6b..17d09045e4 100644 --- a/meta/lib/oe/terminal.py +++ b/meta/lib/oe/terminal.py | |||
@@ -63,6 +63,10 @@ class Xfce(XTerminal): | |||
63 | command = 'xfce4-terminal -T "{title}" -e "{command}"' | 63 | command = 'xfce4-terminal -T "{title}" -e "{command}"' |
64 | priority = 2 | 64 | priority = 2 |
65 | 65 | ||
66 | class Terminology(XTerminal): | ||
67 | command = 'terminology -T="{title}" -e {command}' | ||
68 | priority = 2 | ||
69 | |||
66 | class Konsole(XTerminal): | 70 | class Konsole(XTerminal): |
67 | command = 'konsole -T "{title}" -e {command}' | 71 | command = 'konsole -T "{title}" -e {command}' |
68 | priority = 2 | 72 | priority = 2 |