From be5b0af7fa7fa341363e0ccfe0c7f8a85213d37f Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Wed, 29 May 2019 20:05:35 +0200 Subject: wayland-app-launch: add a simple systemd service This tries to start a wayland application after weston got started. Create a copy of wayland-terminal-launch_1.0.bb with the variables changed according to your needs. Signed-off-by: Max Krummenacher --- .../wayland-app-launch/wayland-app-launch.service | 11 +++++++++++ .../wayland-app-launch/wayland-app-launch.sh.in | 14 ++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.service create mode 100644 recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.sh.in (limited to 'recipes-graphics/wayland-app-launch/wayland-app-launch') diff --git a/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.service b/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.service new file mode 100644 index 0000000..d41615b --- /dev/null +++ b/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.service @@ -0,0 +1,11 @@ +[Unit] +Description=Start a wayland application +After=weston.service +Requires=weston.service + +[Service] +Type=forking +ExecStart=/usr/bin/wayland-app-launch.sh + +[Install] +WantedBy=multi-user.target diff --git a/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.sh.in b/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.sh.in new file mode 100644 index 0000000..411184b --- /dev/null +++ b/recipes-graphics/wayland-app-launch/wayland-app-launch/wayland-app-launch.sh.in @@ -0,0 +1,14 @@ +#!/bin/sh +if test -z "$XDG_RUNTIME_DIR"; then + export XDG_RUNTIME_DIR=/run/user/`id -u` + if ! test -d "$XDG_RUNTIME_DIR"; then + mkdir --parents $XDG_RUNTIME_DIR + chmod 0700 $XDG_RUNTIME_DIR + fi +fi + +# wait for weston +while [ ! -e $XDG_RUNTIME_DIR/wayland-0 ] ; do sleep 0.1; done +sleep 0.5 + +@@wayland-application@@ -- cgit v1.2.3