|
@@ -2,8 +2,8 @@
|
|
|
|
|
|
set -e
|
|
|
|
|
|
-if [ -f /usr/bin/qtdemo ]; then
|
|
|
- QTDEMO="qtdemo > /var/log/Xsession.log 2> &1"
|
|
|
+if [ -x /usr/bin/qtdemo ]; then
|
|
|
+ QTDEMO="qtdemo"
|
|
|
else
|
|
|
QTDEMO="qtdemoE -qws"
|
|
|
fi
|
|
@@ -18,7 +18,7 @@ case "$1" in
|
|
|
if [ ! -f /etc/pointercal ]; then
|
|
|
/usr/bin/ts_calibrate
|
|
|
fi
|
|
|
- if [ "$QTDEMO" = qtdemo ]; then
|
|
|
+ if [ "$QTDEMO" = "qtdemo" ]; then
|
|
|
Xorg &
|
|
|
export DISPLAY=:0
|
|
|
$QTDEMO &
|
|
@@ -26,7 +26,7 @@ case "$1" in
|
|
|
QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
|
|
|
fi
|
|
|
else
|
|
|
- if [ "$QTDEMO" = qtdemo ]; then
|
|
|
+ if [ "$QTDEMO" = "qtdemo" ]; then
|
|
|
Xorg &
|
|
|
export DISPLAY=:0
|
|
|
fi
|
|
@@ -35,7 +35,7 @@ case "$1" in
|
|
|
;;
|
|
|
stop)
|
|
|
echo "Stopping qtdemo"
|
|
|
- if [ "$QTDEMO" = qtdemo ]; then
|
|
|
+ if [ "$QTDEMO" = "qtdemo" ]; then
|
|
|
killall Xorg
|
|
|
killall qtdemo
|
|
|
else
|