summaryrefslogtreecommitdiff
authorbipolar <bipolar>2002-03-11 20:04:05 (UTC)
committer bipolar <bipolar>2002-03-11 20:04:05 (UTC)
commit990d0ad3664c24e8909027ae4d3839f4e318ea00 (patch) (unidiff)
tree0542413141a6d164728c281b257d3a4929013530
parentf1c93c0eb0d9599b0f5e0c0406defc2f2f6c6988 (diff)
downloadopie-990d0ad3664c24e8909027ae4d3839f4e318ea00.zip
opie-990d0ad3664c24e8909027ae4d3839f4e318ea00.tar.gz
opie-990d0ad3664c24e8909027ae4d3839f4e318ea00.tar.bz2
Make the iPaqs button mapable
Diffstat (more/less context) (ignore whitespace changes)
-rwxr-xr-xetc/init.d/qpe4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/init.d/qpe b/etc/init.d/qpe
index 5ff72ab..56f2f27 100755
--- a/etc/init.d/qpe
+++ b/etc/init.d/qpe
@@ -1,40 +1,44 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3 3
4export LOGNAME=root 4export LOGNAME=root
5export HOME=/$LOGNAME 5export HOME=/$LOGNAME
6export QWS_DISPLAY=Transformed:Rot270:0 6export QWS_DISPLAY=Transformed:Rot270:0
7export QTDIR=/usr 7export QTDIR=/usr
8export OPIEDIR=/opt/QtPalmtop 8export OPIEDIR=/opt/QtPalmtop
9export QPEDIR=/opt/QtPalmtop 9export QPEDIR=/opt/QtPalmtop
10
11#this sets the iPaqs powerbutton to mapable
12echo 1 > /proc/sys/ts/suspend_button_mode
13
10if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi 14if [ ! -x $OPIEDIR/bin/qpe ] ; then exit 0 ; fi
11 15
12$OPIEDIR/bin/qpe-reorgfiles 16$OPIEDIR/bin/qpe-reorgfiles
13 17
14. /etc/profile 18. /etc/profile
15 19
16killproc() { 20killproc() {
17 pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'` 21 pid=`/bin/ps -e | /bin/sed -n -e '/\<'$1'\>/ s/^ *\([0-9][0-9]*\).*/\1/p'`
18 [ "$pid" != "" ] && kill $pid 22 [ "$pid" != "" ] && kill $pid
19} 23}
20 24
21case $1 in 25case $1 in
22'start') 26'start')
23 echo "Starting QPE..." 27 echo "Starting QPE..."
24 28
25 cd $HOME 29 cd $HOME
26 30
27 rm -f /etc/rc2.d/S99x # Can't have both running! 31 rm -f /etc/rc2.d/S99x # Can't have both running!
28 32
29 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & 33 $OPIEDIR/bin/qpe 2>/dev/null >/dev/null &
30 34
31 ;; 35 ;;
32'stop') 36'stop')
33 echo "Killing QPE..." 37 echo "Killing QPE..."
34 killproc qpe 38 killproc qpe
35 ;; 39 ;;
36*) 40*)
37 echo "usage: $0 { start | stop }" 41 echo "usage: $0 { start | stop }"
38 ;; 42 ;;
39esac 43esac
40 44