summaryrefslogtreecommitdiff
path: root/etc/init.d/qpe
Side-by-side diff
Diffstat (limited to 'etc/init.d/qpe') (more/less context) (ignore whitespace changes)
-rwxr-xr-xetc/init.d/qpe8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe
index 12bb1df..8791e73 100755
--- a/etc/init.d/qpe
+++ b/etc/init.d/qpe
@@ -2,16 +2,16 @@
#
export LOGNAME=root
export HOME=/$LOGNAME
export QWS_DISPLAY=Transformed:Rot270:0
export QTDIR=/usr
-export QPEDIR=/opt/QtPalmtop
-if [ ! -x $QPEDIR/bin/qpe ] ; then exit 0 ; fi
+export OPIEDIR=/opt/QtPalmtop
+if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi
-$QPEDIR/bin/qpe-reorgfiles
+$OPIEDIR/bin/qpe-reorgfiles
. /etc/profile
killproc() {
pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
[ "$pid" != "" ] && kill $pid
@@ -22,13 +22,13 @@ case $1 in
echo "Starting QPE..."
cd $HOME
rm -f /etc/rc2.d/S99x # Can't have both running!
- $QPEDIR/bin/qpe 2>/dev/null >/dev/null &
+ $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
;;
'stop')
echo "Killing QPE..."
killproc qpe
;;