summaryrefslogtreecommitdiff
path: root/etc/init.d/qpe
Unidiff
Diffstat (limited to 'etc/init.d/qpe') (more/less context) (ignore whitespace changes)
-rwxr-xr-xetc/init.d/qpe39
1 files changed, 39 insertions, 0 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe
new file mode 100755
index 0000000..12bb1df
--- a/dev/null
+++ b/etc/init.d/qpe
@@ -0,0 +1,39 @@
1#!/bin/sh
2#
3
4export LOGNAME=root
5export HOME=/$LOGNAME
6export QWS_DISPLAY=Transformed:Rot270:0
7export QTDIR=/usr
8export QPEDIR=/opt/QtPalmtop
9if [ ! -x $QPEDIR/bin/qpe ] ; then exit 0 ; fi
10
11$QPEDIR/bin/qpe-reorgfiles
12
13. /etc/profile
14
15killproc() {
16 pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
17 [ "$pid" != "" ] && kill $pid
18}
19
20case $1 in
21'start')
22 echo "Starting QPE..."
23
24 cd $HOME
25
26 rm -f /etc/rc2.d/S99x # Can't have both running!
27
28 $QPEDIR/bin/qpe 2>/dev/null >/dev/null &
29
30 ;;
31'stop')
32 echo "Killing QPE..."
33 killproc qpe
34 ;;
35*)
36 echo "usage: $0 { start | stop }"
37 ;;
38esac
39