summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/stowctrl.sh
Side-by-side diff
Diffstat (limited to 'noncore/tools/opie-sh/scripts/stowctrl.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/stowctrl.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/tools/opie-sh/scripts/stowctrl.sh b/noncore/tools/opie-sh/scripts/stowctrl.sh
index 475c3a3..20cb6ae 100755
--- a/noncore/tools/opie-sh/scripts/stowctrl.sh
+++ b/noncore/tools/opie-sh/scripts/stowctrl.sh
@@ -10,52 +10,52 @@
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# 20020524-1 - code beautification, added icons and reset
# 20020517-2 - bugfixed fullscreen, added info about ifconfig
# 20020517-1 - added about, fullscreen and icon
-OPIE_SH=/opt/QtPalmtop/bin/opie-sh
+OPIE_SH=$OPIEDIR/bin/opie-sh
######################################################################
# subroutines
about() {
- ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/stowctrl.png>"
+ ( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/stowctrl.png>"
echo "<h3>About</h3>"
echo "This little App should make it easy for you to "
echo "activate / deactivate the stowaway keyboard (on ipaq)"
echo "<p>"
) | $OPIE_SH -t "stowaway control" -f &
SCREENCLEAN=$!
sleep 1
}
startup() {
- echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/stowctrl.png>" > /tmp/sout
+ echo "<img src=$OPIEDIR/pics/opie-sh-scripts/stowctrl.png>" > /tmp/sout
echo "<h3>stowaway up</h3>" >> /tmp/sout
modprobe h3600_stowaway >> /tmp/sout
cat /dev/stowaway &
echo $! > /tmp/stowcatpid
$OPIE_SH -t Output -f /tmp/sout
rm /tmp/sout
}
stopit() {
- ( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/stowctrl.png>"
+ ( echo "<img src=$OPIEDIR/pics/opie-sh-scripts/stowctrl.png>"
echo "<h3>stowaway down</h3>"
read THECAT < /tmp/stowcatpid
kill $THECAT
rmmod h3600_stowaway
) 2>&1 | $OPIE_SH -t Output -f
}
cleanup() {
kill $SCREENCLEAN
rm -f /tmp/qcop-msg-stowctrl.sh
}