Fixed incorect variable setting on line 34. added support for the magic number when starting proton
This commit is contained in:
@@ -31,7 +31,7 @@ elif [[ -d "$STEAM_CUTOM_PROTON_PATH" ]] then
|
|||||||
subdir="${subdir%/}"
|
subdir="${subdir%/}"
|
||||||
if [[ -x "$subdir/proton" ]] then
|
if [[ -x "$subdir/proton" ]] then
|
||||||
## We found a proton! we will asume this is a good and working one :)
|
## We found a proton! we will asume this is a good and working one :)
|
||||||
PROTON_PATH="$subdir/proton"
|
PROTON_PATH="$subdir"
|
||||||
found=1
|
found=1
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
@@ -171,4 +171,8 @@ echo ""
|
|||||||
sleep 1
|
sleep 1
|
||||||
echo "Starting proton in 5s, we might lose controll, if no application starts then we might have an issue, I trust you proton!..."
|
echo "Starting proton in 5s, we might lose controll, if no application starts then we might have an issue, I trust you proton!..."
|
||||||
sleep 5
|
sleep 5
|
||||||
"$PROTON_PATH/proton" "$TMP_DIR/EAappInstaller.exe"
|
if [[ "$PROTON_PATH" == "PATH" ]] then
|
||||||
|
proton-ge "$TMP_DIR/EAappInstaller.exe"
|
||||||
|
else
|
||||||
|
"$PROTON_PATH/proton" "$TMP_DIR/EAappInstaller.exe"
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user