summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/scripts/launcher_refresh.sh
authorspiralman <spiralman>2002-09-01 14:42:39 (UTC)
committer spiralman <spiralman>2002-09-01 14:42:39 (UTC)
commitdfac71239116c4804081d925e9cf3021680b1e2c (patch) (side-by-side diff)
treecf6a5c3897e9b73eb3415d470de95b77245abdad /noncore/tools/opie-sh/scripts/launcher_refresh.sh
parent27b087fc3458d3d0c01eb0485490a64b2a201541 (diff)
downloadopie-dfac71239116c4804081d925e9cf3021680b1e2c.zip
opie-dfac71239116c4804081d925e9cf3021680b1e2c.tar.gz
opie-dfac71239116c4804081d925e9cf3021680b1e2c.tar.bz2
initial import of gonz's opie-sh scripts
Diffstat (limited to 'noncore/tools/opie-sh/scripts/launcher_refresh.sh') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/tools/opie-sh/scripts/launcher_refresh.sh44
1 files changed, 44 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/scripts/launcher_refresh.sh b/noncore/tools/opie-sh/scripts/launcher_refresh.sh
new file mode 100755
index 0000000..7850508
--- a/dev/null
+++ b/noncore/tools/opie-sh/scripts/launcher_refresh.sh
@@ -0,0 +1,44 @@
+#!/bin/sh
+
+# launcher_refresh.sh - a demonstration of opie-sh
+#
+# Copyright (C) 2002 gonz@directbox.com
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# 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.
+
+OPIE_SH=opie-sh
+
+launcher_refresh() {
+( echo "<img src=/opt/QtPalmtop/pics/opie-sh-scripts/launcher_refresh.png>"
+ echo "<h3>Refresh successful!</h3><br>"
+ echo the launcher has been refreshed.
+ echo
+ echo this is useful if you installed packages using ipk instead of
+ echo oipkg. it is also helping if you are changing .desktop-files
+ echo often.
+ echo "<p>" it also refreshes the input-methods.
+) | $OPIE_SH -t "launcher-refresh" -f
+}
+
+cleanup() {
+ rm -f /tmp/qcop-msg-launcher_refresh.sh
+}
+
+#####################################################################
+#
+# main
+
+/opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()"
+#/opt/QtPalmtop/bin/qcop QPE/System "restart()"
+/opt/QtPalmtop/bin/qcop QPE/System "linkChanged(QString)"
+
+launcher_refresh
+cleanup