blob: 09b8d96e8dcdda2894264e286557451b940003a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
post_install() {
msg=("Example of running Satisfactory via legendary using ULWGL, edit ~/.config/legendary/config.ini like so:"
""
"[CrabEA.env]"
"WINEPREFIX = /path/to/wineprefix"
"GAMEID = ulwgl-526870"
""
"[CrabEA]"
"wrapper = /usr/bin/ulwgl-run"
"no_wine = true")
printf "%s\n" "${msg[@]}"
}
post_upgrade() {
msg=("Latest changes in upstream caused /usr/bin/ulwgl-run-cli to be replaced by /usr/bin/ulwgl-run"
"Subsequently, ULWGL_NO_PYTHON has been removed."
""
"If you're having issues, check for existing upstream issues at https://github.com/Open-Wine-Components/ULWGL-launcher/issues"
"Also check ~/.local/share/ULWGL for inconsistencies and try deleting the folder and re-run ulwgl-run.")
printf "%s\n" "${msg[@]}"
}
|