From f3da8570a977809fadb08315f384726b80f5ee01 Mon Sep 17 00:00:00 2001 From: Rodrigo Chiossi Date: Tue, 6 Jan 2015 12:18:54 -0200 Subject: lib/oe/terminal: add support for Terminology terminal emulator Terminology is the default Enlightenment terminal emulator Signed-off-by: Rodrigo Chiossi Signed-off-by: Ross Burton --- meta/lib/oe/terminal.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta/lib/oe/terminal.py') 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): command = 'xfce4-terminal -T "{title}" -e "{command}"' priority = 2 +class Terminology(XTerminal): + command = 'terminology -T="{title}" -e {command}' + priority = 2 + class Konsole(XTerminal): command = 'konsole -T "{title}" -e {command}' priority = 2 -- cgit 1.2.3-korg