@SheffeyG I see a few issues at play here:
PROTON_REMOTE_DEBUG_CMD="/home/deck/delay.bat"@echo off
timeout /t 5 > nul
start "" "z:\home\deck\debug.exe"
@AlexSmith268 Your suggestion make sense.
I test that bat script, but it doesn't delay as I expect (maybe the timeout statement is wrong?)
And the debug.exe program doesn't pop up with start "" "z:\home\deck\debug.exe" tho the path is viable, but it works when I do start "explorer.exe"
Then I relized I can do this
@echo off
start "" "explorer.exe"
so I can run the executable var run the file explorer. I am still figuring a better way to do this, and thanks for your help!
PROTON_REMOTE_DEBUG_CMDx2 2024-01PROTON_REMOTE_DEBUG_CMD="/home/deck/delay.bat"x1 2024-01PROTON_REMOTE_DEBUG_CMD=delay.bat`,x1 2023-12PROTON_REMOTE_DEBUG_CMD=delay.sh`x1 2023-12
I am using PROTON_REMOTE_DEBUG_CMD launch option to make the debug work with the game in steam deck, and I want to make the debug program work after the game with a delay, so I tried
PROTON_REMOTE_DEBUG_CMD=delay.shandPROTON_REMOTE_DEBUG_CMD=delay.bat, sadly, both scripts don't work, I am confusing which one is correct? or is there another way to do it?here is the bat and sh scripts: