mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
13 lines
425 B
Bash
Executable file
13 lines
425 B
Bash
Executable file
#!/bin/bash
|
|
temp_gdk_loaders_cache="$(mktemp)"
|
|
function atexit {
|
|
[ -n "$temp_gdk_loaders_cache" ] && rm -f "$temp_gdk_loaders_cache"
|
|
}
|
|
trap atexit EXIT
|
|
|
|
appdir_lib_escaped="$(printf '%s\n' "$APPDIR/usr/lib" | sed -e 's/[\/&]/\\&/g')"
|
|
sed "s,%RETARGET%,$appdir_lib_escaped," \
|
|
"$APPDIR/usr/lib/loaders.cache" > "$temp_gdk_loaders_cache"
|
|
export GDK_PIXBUF_MODULE_FILE="$temp_gdk_loaders_cache"
|
|
|
|
"$APPDIR/usr/bin/oneshot"
|