19 lines
357 B
Bash
Executable File
19 lines
357 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
PARSEC_BIN="/usr/bin/parsecd"
|
|
PARSEC_ARGS="app_daemon=1"
|
|
PARSEC_URL="https://parsecgaming.com"
|
|
PARSEC_PROCESS=$(ps -A | grep -c parsecd)
|
|
|
|
while [ ${PARSEC_PROCESS} != "1" ];do
|
|
if [ ! -f ${PARSEC_BIN} ];then
|
|
xdg-open ${PARSEC_URL}
|
|
elif [ ${PARSEC_PROCESS} = "1" ];then
|
|
${PARSEC_BIN} ${PARSEC_ARGS}
|
|
|
|
else
|
|
${PARSEC_BIN} ${PARSEC_ARGS}
|
|
fi
|
|
done
|