summaryrefslogtreecommitdiff
path: root/qt5-layer/recipes-qt/qt5/qt5-x11-free-systemd/qt5-x11-demo-init
blob: 76922ecbf0980385f80878abe873d7b9f2705f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/sh

set -e

cd /usr/share/qtsmarthome-1.0
QTAPP="smarthome"
QTAPPSTART="./${QTAPP} > /var/log/Xsession.log 2>&1"

case "$1" in
  start)
	echo "Starting ${QTAPP}"
	if [ -f /etc/profile.d/tslib.sh ]; then
		source /etc/profile.d/tslib.sh
	fi
	if [ -e "$TSLIB_TSDEVICE" ]; then
		if [ ! -f /etc/pointercal ]; then
			/usr/bin/ts_calibrate
		fi
	else
		if [ -e "/usr/bin/xinput_calibrator_once.sh" ]; then
			xinput_calibrator_once.sh
		fi
	fi
	Xorg &
	export DISPLAY=:0
	eval $QTAPPSTART &
	;;
  stop)
	echo "Stopping ${QTAPP}"
		killall $QTAPP
		killall Xorg
	;;
  restart)
	$0 stop
	$0 start
	;;
  *)
	echo "usage: $0 { start | stop | restart }" >&2
	exit 1
	;;
esac

exit 0