‰PNG  IHDR @ @ ªiqÞ pHYs   šœ —tEXtComment #!/bin/bash path="/usr/libexec/kcare/python/" export PYTHONPATH="$path:$PYTHONPATH" python="$(command -v python3 || command -v /usr/libexec/platform-python || command -v python2)" if [ "$python" ]; then cmd=("$python" "-m" "kcarectl.__main__") else >&2 echo error: python3 or python2 executables were not found exit 1 fi exec "${cmd[@]}" "$@"