-rwxr-xr-x | inputmethods/keyboard/opie-keyboard.postinst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/inputmethods/keyboard/opie-keyboard.postinst b/inputmethods/keyboard/opie-keyboard.postinst index 0083987..b9ac6f0 100755 --- a/inputmethods/keyboard/opie-keyboard.postinst +++ b/inputmethods/keyboard/opie-keyboard.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 + |