forked from CastroFidel/PortWINE
24 lines
733 B
Bash
Executable File
24 lines
733 B
Bash
Executable File
#!/bin/bash
|
|
# Author: PortWINE-Linux.ru
|
|
. "$(dirname $(readlink -f "$0"))/runlib"
|
|
START_PORTWINE
|
|
if [ -f "$1" ]; then
|
|
export portwine_exe="$(readlink -f "$1")"
|
|
export PATH_TO_GAME="$( cd "$( dirname "$1" )" >/dev/null 2>&1 && pwd )"
|
|
cd "$PATH_TO_GAME"
|
|
if [ ! -z ${optirun_on} ]; then
|
|
$PW_TERM "${PW_RUNTIME}" ${optirun_on} "${port_on_run}" "run" "$portwine_exe"
|
|
else
|
|
$PW_TERM "${PW_RUNTIME}" "${port_on_run}" "run" "$portwine_exe"
|
|
fi
|
|
else
|
|
cd "${WINEPREFIX}/drive_c/"
|
|
if [ ! -z ${optirun_on} ]
|
|
then
|
|
$PW_TERM "${PW_RUNTIME}" ${optirun_on} "${port_on_run}" "run" "explorer"
|
|
else
|
|
$PW_TERM "${PW_RUNTIME}" "${port_on_run}" "run" "explorer"
|
|
fi
|
|
fi
|
|
STOP_PORTWINE
|