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