-rwxr-xr-x | inputmethods/jumpx/opie-jumpx.postinst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/inputmethods/jumpx/opie-jumpx.postinst b/inputmethods/jumpx/opie-jumpx.postinst index 0083987..b9ac6f0 100755 --- a/inputmethods/jumpx/opie-jumpx.postinst +++ b/inputmethods/jumpx/opie-jumpx.postinst @@ -1,2 +1,7 @@ #!/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 "reloadInputMethods()" +else + exit 0 +fi + |