-
Notifications
You must be signed in to change notification settings - Fork 2
/
fgmod-uninstaller.sh
executable file
·39 lines (33 loc) · 1.17 KB
/
fgmod-uninstaller.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
#!/usr/bin/env bash
mod_path="/usr/share/fgmod"
if [[ $(pwd) == "$mod_path" ]]; then
rm -r $mod_path
else
rm "dlss-enabler.dll"
rm "dxgi.dll"
rm "nvngx-wrapper.dll"
rm "_nvngx.dll"
rm "dlssg_to_fsr3_amd_is_better.dll"
rm "dlssg_to_fsr3_amd_is_better-3.0.dll"
rm "dlss-enabler-upscaler.dll"
rm "nvngx.ini"
rm "libxess.dll"
rm "d3dcompiler_47.dll"
rm "amd_fidelityfx_dx12.dll"
rm "amd_fidelityfx_vk.dll"
# Those files might not exist
rm "nvapi64.dll" 2>/dev/null
rm "fakenvapi.ini" 2>/dev/null
rm "OptiScaler.log" 2>/dev/null
rm "dlss-enabler.log" 2>/dev/null
rm "dlssg_to_fsr3.log" 2>/dev/null
rm "fakenvapi.log" 2>/dev/null
# Restore files the game might've shipped with
mv -f "libxess.dll.b" "libxess.dll" 2>/dev/null
mv -f "d3dcompiler_47.dll.b" "d3dcompiler_47.dll" 2>/dev/null
mv -f "amd_fidelityfx_dx12.dll.b" "amd_fidelityfx_dx12.dll" 2>/dev/null
mv -f "amd_fidelityfx_vk.dll.b" "amd_fidelityfx_vk.dll" 2>/dev/null
echo "fgmod removed from this game"
echo "Don't forget to remove /home/USERNAME/fgmod/fgmod from the launch options!"
rm "$0" # remove the uninstaller itself
fi