blob: 6c814eecebcffddbf7d1d685d434c66a80065c2d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env bash
# Set Wine prefix to custom location, for better compatability
export WINEPREFIX="$HOME/.local/share/undertalemodtool"
# Make directory for Wine prefix if doesn't exist
if [ ! -d "$WINEPREFIX" ]; then
mkdir -p "$WINEPREFIX"
fi
# If session is Wayland and file "$WINEPREFIX/forceX" doesn't exit, force Wayland mode
if [[ "$XDG_SESSION_TYPE" == "wayland" && ! -f "$WINEPREFIX/forceX" ]]; then
export DISPLAY=
fi
# Launch
WINE_D3D_CONFIG="renderer=gdi" wine /opt/undertalemodtool/UndertaleModTool.exe "$1"
|