14 lines
340 B
Bash
Executable File
14 lines
340 B
Bash
Executable File
#!/bin/bash
|
|
# Author: PortWINE-Linux.ru
|
|
. "$(dirname $(readlink -f "$0"))/runlib"
|
|
"${WINESERVER}" -k
|
|
START_PORTWINE
|
|
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
|
|
STOP_PORTWINE
|