PW_GLYPH 793 Bytes
Newer Older
1
#!/usr/bin/env bash
2 3 4
# Author: chal55rus (Sergey P.)
########################################################################
export LAUNCH_PARAMETERS=("/S" )
castro-fidel's avatar
castro-fidel committed
5
export PW_AUTOINSTALL_EXE="${PW_USER_TEMP}/GlyphInstall.exe"
6
start_portwine
Mikhail Tergoev's avatar
Mikhail Tergoev committed
7
if try_download "https://glyph.dyn.triongames.com/glyph/live/GlyphInstall.exe" "${PW_AUTOINSTALL_EXE}" no_mirror
8
then
Mikhail Tergoev's avatar
Mikhail Tergoev committed
9
    pw_start_progress_bar_install_game "GlyphClient."
castro-fidel's avatar
castro-fidel committed
10 11
    pw_kill_autostart GlyphClient.exe &
    pw_run "${PW_AUTOINSTALL_EXE}"
12
    portwine_exe="$WINEPREFIX/drive_c/Program Files (x86)/Glyph/GlyphClient.exe"
castro-fidel's avatar
castro-fidel committed
13
    try_remove_file "${PW_AUTOINSTALL_EXE}"
Mikhail Tergoev's avatar
Mikhail Tergoev committed
14
    try_remove_file "${portwine_exe}.ppdb"
15
    kill_portwine
castro-fidel's avatar
castro-fidel committed
16
    pw_stop_progress_bar
17 18 19 20
    export PORTWINE_CREATE_SHORTCUT_NAME="GlyphClient"
    portwine_create_shortcut
fi
stop_portwine