-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprepare.sh
executable file
·83 lines (69 loc) · 3.4 KB
/
prepare.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env bash
mod_path="$HOME/fgmod"
nvidiaver=555.52.04
enablerver=3.02.000.0
fakenvapiver=v1.2.0
# standalone makes use of fgmod.sh and fgmod-uninstaller.sh from the working directory
# To make it fully standalone with files being installed to pwd, set standalone=1 and mod_path=.
standalone=0
if [[ -d "$mod_path" ]] && [[ ! $mod_path == . ]]; then
read -p "$mod_path already exists, override the old version? [y/N] " -n 1 -r </dev/tty
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
rm -r "$mod_path"
else
echo Aborting...
exit 1
fi
fi
# In case script gets ran from a different directory
cd $(dirname "$0")
mkdir "$mod_path"
if [[ ! $standalone -eq 0 ]]; then
[[ -f fgmod.sh ]] && cp fgmod.sh "$mod_path/fgmod" || exit 1
[[ -f fgmod-uninstaller.sh ]] && cp fgmod-uninstaller.sh "$mod_path" || exit 1
fi
cd "$mod_path" || exit 1
curl -OLf https://github.com/artur-graniszewski/DLSS-Enabler/releases/download/$enablerver/dlss-enabler-setup-$enablerver.exe
curl -OLf https://download.nvidia.com/XFree86/Linux-x86_64/$nvidiaver/NVIDIA-Linux-x86_64-$nvidiaver.run
curl -OLf https://raw.githubusercontent.com/mozilla/fxc2/master/dll/d3dcompiler_47.dll
curl -OLf https://github.com/FakeMichau/innoextract/releases/download/6.3.0/innoextract
curl -OLf https://github.com/FakeMichau/fakenvapi/releases/download/$fakenvapiver/fakenvapi.7z
[[ $standalone -eq 0 ]] && curl -o fgmod -Lf https://raw.githubusercontent.com/FakeMichau/fgmod/main/fgmod.sh
[[ $standalone -eq 0 ]] && curl -OL https://raw.githubusercontent.com/FakeMichau/fgmod/main/fgmod-uninstaller.sh
[[ ! -f dlss-enabler-setup-$enablerver.exe ]] ||
[[ ! -f NVIDIA-Linux-x86_64-$nvidiaver.run ]] ||
[[ ! -f d3dcompiler_47.dll ]] ||
[[ ! -f innoextract ]] ||
[[ ! -f fakenvapi.7z ]] ||
[[ ! -f fgmod ]] ||
[[ ! -f fgmod-uninstaller.sh ]] && exit 1
# Extract files
chmod +x NVIDIA-Linux-x86_64-$nvidiaver.run
./NVIDIA-Linux-x86_64-$nvidiaver.run -x
chmod +x innoextract
./innoextract dlss-enabler-setup-$enablerver.exe
# Prepare mod files
mv app/* .
rm -r app
[[ -f "$(which 7z 2>/dev/null)" ]] && 7z -y x fakenvapi.7z
cp -f NVIDIA-Linux-x86_64-$nvidiaver/nvngx.dll _nvngx.dll
cp -f NVIDIA-Linux-x86_64-$nvidiaver/LICENSE "licenses/LICENSE (NVIDIA driver)"
chmod +r _nvngx.dll
rm -rf innoextract NVIDIA-Linux-x86_64-$nvidiaver dlss-enabler-setup-$enablerver.exe NVIDIA-Linux-x86_64-$nvidiaver.run fakenvapi.7z
rm -rf plugins nvapi64-proxy.dll dlss-enabler-fsr.dll dlss-enabler-xess.dll dbghelp.dll version.dll winmm.dll nvngx.dll dlss-finder.exe dlss-enabler.log dlssg_to_fsr3.log fakenvapi.log "LICENSE (DLSSG to FSR3 mod).txt" "Readme (DLSS enabler).txt" "READ ME (DLSSG to FSR3 mod).txt" "XESS LICENSE.pdf"
[[ -f "$(which nvidia-smi 2>/dev/null)" ]] && rm -rf nvapi64.dll fakenvapi.ini
sed -i 's|mod_path="/usr/share/fgmod"|mod_path="'"$mod_path"'"|g' fgmod
chmod +x fgmod
sed -i 's|mod_path="/usr/share/fgmod"|mod_path="'"$mod_path"'"|g' fgmod-uninstaller.sh
chmod +x fgmod-uninstaller.sh
echo ""
# Flatpak doesn't have access to home by default
if flatpak list | grep "com.valvesoftware.Steam" 1>/dev/null; then
echo Flatpak version of Steam detected, adding access to fgmod\'s folder
echo Please restart Steam!
flatpak override --user --filesystem="$mod_path" com.valvesoftware.Steam
fi
echo All done!
echo For Steam, add this to the launch options: "$mod_path/fgmod" %COMMAND%
echo For Heroic, add this as a new wrapper: "$mod_path/fgmod"