-rwxr-xr-x | inputmethods/unikeyboard/opie-unikeyboard.postinst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/inputmethods/unikeyboard/opie-unikeyboard.postinst b/inputmethods/unikeyboard/opie-unikeyboard.postinst index 0083987..a549c30 100755 --- a/inputmethods/unikeyboard/opie-unikeyboard.postinst +++ b/inputmethods/unikeyboard/opie-unikeyboard.postinst @@ -1,2 +1,6 @@ #!/bin/sh -pidof -s qpe >/dev/null && /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadInputMethods()" +if pidof -s qpe >/dev/null; then + /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +else + exit 0 +fi |