From da35877db811f440b776bf56ea863da3e7a99100 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 (From OE-Core rev: f3da8570a977809fadb08315f384726b80f5ee01) Signed-off-by: Rodrigo Chiossi Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/lib/oe/terminal.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'meta') diff --git a/meta/lib/oe/terminal.py b/meta/lib/oe/terminal.py index 273590b..17d0904 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 v1.1