You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
457 B
Bash
17 lines
457 B
Bash
#!/usr/bin/env sh
|
|
|
|
configure()
|
|
{
|
|
# The WINEPREFIX for the program
|
|
WINEPREFIX=""
|
|
# The path to the exe starting from your prefix's dosdevices folder.
|
|
# example: "c:/GOG Games/Some Game/startTheGame.exe"
|
|
native_path=""
|
|
}
|
|
|
|
configure
|
|
wine_exec_full="${WINEPREFIX}/dosdevices/${native_path}"
|
|
# TODO: Print a useful error message when the path is wrong.
|
|
cd "$(dirname "${wine_exec_full}")" || exit 1
|
|
wine "./$(basename "${wine_exec_full}")"
|