29 lines
1.5 KiB
Bash
29 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
GW2_PATH="/home/zoli/.local/share/Steam/steamapps/common/Guild Wars 2/"
|
|
|
|
#Remove previous installation
|
|
rm -f "$GW2_PATH"d3d11.dll
|
|
rm -f "$GW2_PATH"arcdps_unofficial_extras.dll
|
|
rm -f "$GW2_PATH"arcdps_healing_stats.dll
|
|
rm -f "$GW2_PATH"d3d9_arcdps_table.dll
|
|
rm -rf "$GW2_PATH"addons
|
|
|
|
#ccreate addons folders
|
|
mkdir -p "$GW2_PATH"addons/arcdps/
|
|
|
|
#download arc dps
|
|
wget -P "$GW2_PATH" https://www.deltaconnected.com/arcdps/x64/d3d11.dll
|
|
#download unoffical extras
|
|
wget -P "$GW2_PATH" https://github.com/Krappa322/arcdps_unofficial_extras_releases/releases/latest/download/arcdps_unofficial_extras.dll
|
|
#download healing stats
|
|
wget -P "$GW2_PATH" https://github.com/Krappa322/arcdps_healing_stats/releases/latest/download/arcdps_healing_stats.dll
|
|
#download boon table
|
|
|
|
wget -P "$GW2_PATH"/addons/arcdps https://gitea.zv.25u.com/zoli/gw2addons/raw/commit/ed2eb8d59867636fc7a65f0deff15599e5596013/arcdps_healing_stats.json
|
|
wget -P "$GW2_PATH"/addons/arcdps https://gitea.zv.25u.com/zoli/gw2addons/raw/commit/ed2eb8d59867636fc7a65f0deff15599e5596013/arcdps_imgui.ini
|
|
wget -P "$GW2_PATH"/addons/arcdps https://gitea.zv.25u.com/zoli/gw2addons/raw/commit/ed2eb8d59867636fc7a65f0deff15599e5596013/arcdps_table.ini
|
|
wget -P "$GW2_PATH"/addons/arcdps https://gitea.zv.25u.com/zoli/gw2addons/raw/commit/ed2eb8d59867636fc7a65f0deff15599e5596013/arcdps_unofficial_extras.json
|
|
wget -P "$GW2_PATH"/addons/arcdps https://gitea.zv.25u.com/zoli/gw2addons/raw/commit/ed2eb8d59867636fc7a65f0deff15599e5596013/arcdps.ini
|
|
|