I cant change the title and have a limit on characters but it's supposed to be "How to get s&box Editor working for Linux"
1. Set app compatibility to Proton 10.x for S&box Editor.
2. Launch the Editor once to generate the WINE prefix:
compatdata/2129370/pfx
3. The app will fail to launch and report missing .NET runtime.
4. Install .NET 10 Desktop Runtime using the script below.
2. Launch the Editor once to generate the WINE prefix:
compatdata/2129370/pfx
3. The app will fail to launch and report missing .NET runtime.
4. Install .NET 10 Desktop Runtime using the script below.
#!/usr/bin/env bash
# Installs .NET 10 Desktop Runtime into S&box Proton prefix (AppID 2129370)
# Requires:
# - Steam already launched once with Proton 10 enabled for the app
# - winetricks installed
export PROTON="$HOME/.local/share/Steam/steamapps/common/Proton 10.0"
export WINEPREFIX="$HOME/.steam/steam/steamapps/compatdata/2129370/pfx"
mkdir -p "$HOME/Downloads"
command -v winetricks >/dev/null 2>&1
wget -O "$HOME/Downloads/windowsdesktop-runtime-10.0.7-win-x64.exe" \
"https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.7/windowsdesktop-runtime-10.0.7-win-x64.exe"
"$PROTON/files/bin/wine" "$HOME/Downloads/windowsdesktop-runtime-10.0.7-win-x64.exe"