PW_GOG 1.14 KB
Newer Older
1
#!/usr/bin/env bash
castro-fidel's avatar
castro-fidel committed
2
# Author: Castro-Fidel (linux-gaming.ru)
3
########################################################################
Mikhail Tergoev's avatar
Mikhail Tergoev committed
4 5 6 7 8
GOG_VER="$(curl "https://remote-config.gog.com/components/webinstaller?component_version=2.0.0" \
| awk -F'setup_galaxy_' '{print $2}' \
| awk -F'.exe' '{print $1}')"
[[ "${GOG_VER}" != 2.* ]] && yad_error "ERROR: Get the GOG version." && exit 1
export PW_AUTOINSTALL_EXE="${PW_USER_TEMP}/setup_galaxy_${GOG_VER}.exe"
9
export LAUNCH_PARAMETERS=("/VERYSILENT")
10
export PW_PREFIX_NAME="GOG"
11 12 13
export DISABLE_CP_DEFPFX="1"
export PW_WINE_USE="WINE_LG"
export PORTWINE_CREATE_SHORTCUT_NAME="GOG GALAXY"
14

Mikhail Tergoev's avatar
Mikhail Tergoev committed
15
start_portwine
16

Mikhail Tergoev's avatar
Mikhail Tergoev committed
17
if try_download "https://content-system.gog.com/open_link/download?path=/open/galaxy/client/${GOG_VER}/setup_galaxy_${GOG_VER}.exe" "${PW_AUTOINSTALL_EXE}" no_mirror
18
then
Mikhail Tergoev's avatar
Mikhail Tergoev committed
19
    pw_start_progress_bar_install_game "GOG Galaxy."
castro-fidel's avatar
castro-fidel committed
20
    pw_run "${PW_AUTOINSTALL_EXE}"
21
    portwine_exe="$WINEPREFIX/drive_c/Program Files (x86)/GOG Galaxy/GalaxyClient.exe"
castro-fidel's avatar
castro-fidel committed
22
    try_remove_file "${PW_AUTOINSTALL_EXE}"
Mikhail Tergoev's avatar
Mikhail Tergoev committed
23
    try_remove_file "${portwine_exe}.ppdb"
24
    kill_portwine
castro-fidel's avatar
castro-fidel committed
25
    pw_stop_progress_bar
26 27
    portwine_create_shortcut
fi
28

29
stop_portwine