forked from CastroFidel/PortWINE
12 lines
329 B
Bash
Executable File
12 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
# Author: PortWINE-Linux.ru
|
|
. "$(dirname $(readlink -f "$0"))/runlib"
|
|
"${WINESERVER}" -k
|
|
START_PORTWINE
|
|
if [ ! -z ${optirun_on} ]; then
|
|
${optirun_on} "${PROTONRUN}" "run" "${gamestart}" ${launch_parameters} &>/dev/null
|
|
else
|
|
"${PROTONRUN}" "run" "${gamestart}" ${launch_parameters} &>/dev/null
|
|
fi
|
|
STOP_PORTWINE
|