data_from_portwine
gstreamer-1.0
scripts
debug
lang
port_update
remove
restart
runlib
setup
start
vars
wineboot
winecfg
winecmd
winefile
winereg
winetricks
winetricks-q-force
LICENSE
dxvk.conf
filelock.py
proton
portwine_install_script
README.md
13 lines
351 B
Bash
Executable File
13 lines
351 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} & KILL9_WINEDEVICE >&2
|
|
else
|
|
"${PROTONRUN}" "run" "${gamestart}" ${launch_parameters} & KILL9_WINEDEVICE >&2
|
|
fi
|
|
STOP_PORTWINE
|