From 8c5d363c334474fee33a81837f9ce4e6d2d92cd8 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Mon, 3 Dec 2018 06:42:52 +0000 Subject: Sort out package of examples The packages for debug of runxdg were removed because they were not good for example to use xdg-launcher. Some package are added to test AGL LifeCycle Management. Change-Id: Ic82fd1b90eb695d7e6a0c2f62bb21994424ebf51 Signed-off-by: Tadao Tanikawa --- package/lifecycle/bin/runxdg | 2 + package/lifecycle/config.xml | 16 ++++++ package/lifecycle/icon.svg | 114 ++++++++++++++++++++++++++++++++++++++++++ package/lifecycle/runxdg.toml | 22 ++++++++ 4 files changed, 154 insertions(+) create mode 100755 package/lifecycle/bin/runxdg create mode 100644 package/lifecycle/config.xml create mode 100644 package/lifecycle/icon.svg create mode 100644 package/lifecycle/runxdg.toml (limited to 'package/lifecycle') diff --git a/package/lifecycle/bin/runxdg b/package/lifecycle/bin/runxdg new file mode 100755 index 0000000..dac903c --- /dev/null +++ b/package/lifecycle/bin/runxdg @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/runxdg $@ diff --git a/package/lifecycle/config.xml b/package/lifecycle/config.xml new file mode 100644 index 0000000..3006fd0 --- /dev/null +++ b/package/lifecycle/config.xml @@ -0,0 +1,16 @@ + + + Test For LifeCycle + + + Test program for AGL LifeCycle Management + Panasonic Corporation + MIT + + + + + + + + diff --git a/package/lifecycle/icon.svg b/package/lifecycle/icon.svg new file mode 100644 index 0000000..882e3c4 --- /dev/null +++ b/package/lifecycle/icon.svg @@ -0,0 +1,114 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/package/lifecycle/runxdg.toml b/package/lifecycle/runxdg.toml new file mode 100644 index 0000000..3abd014 --- /dev/null +++ b/package/lifecycle/runxdg.toml @@ -0,0 +1,22 @@ +[application] +# role: identifier for WindowManager (used in layers.json) +# e.g. role = "WebBrowser" +role = "runxdg" + +# launch by "POSIX"(fork/exec), "AFM_DBUS"(afm via dbus), "AFM_WEBSOCKET"(afm via websockt) +method = "POSIX" + +# path: path to the executable +# e.g. +# path = "/usr/bin/chromium" +path = "/usr/bin/weston-simple-egl" + +# params: arguments of the excecutable +# e.g. +# params = [ +# "--mus", +# "--no-sandbox", +# "--window-size=1080,1488", +# "--ozone-platform=wayland", +# "" +# ] -- cgit 1.2.3-korg