summaryrefslogtreecommitdiff
path: root/recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2018-01-25 19:03:33 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-03-22 09:20:00 +0100
commit3827a5d1b8803b2d0c8f19c5f59365992eb123bb (patch)
tree563f699f8f3e7dff25c1d498eca7f8816ceeac1a /recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in
parentd81c71fbb99c95a50d2ebc73da2fa8ae665a8b35 (diff)
x-window-simple-app: start a x11 application
After the xserver-nodm-init started the Xserver this provides a script to start exactly one X application. Change the variables INITIAL_PATH and X_APPLICATION to the specify the current working directory when starting the application and the path to the application which is to be started. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Diffstat (limited to 'recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in')
-rw-r--r--recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in b/recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in
new file mode 100644
index 0000000..b3e0e8f
--- /dev/null
+++ b/recipes-graphics/x-window-simple-app/x-window-simple-app/x-window-manager.in
@@ -0,0 +1,6 @@
+RET=1
+while [ $RET -ne 0 ]; do
+ cd @PATH@
+ @APP@
+ RET=$?
+done