-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
toggle steamwebhelper not working #456
Comments
Interesting to see that the function is even used. Should be fixed soon. Thanks for reporting. |
above commit should fix it. good find! 👍 |
Yeah just started using this feature as I noticed as disabling yup launching a game with toggle |
It should do so correctly, as it is executed at the end of the |
The Legend of Heroes Trails of Cold Steel III.log EDIT: opps I linked the symlinked log I don't think that will show anything for you right here is the log for also tried A Hat in Time and there it works as expected so its indeed a game exit detection issue with trails EDIT2: so I guess this can be closed now? |
Thanks for the update! I agree the initial issue is solved, but I'd like to find out why your game does not exit properly. |
sure I don't mind helping to troubleshoot but one thing that comes to mind is this game already has issues exiting normally (meaning from the title screen or the menu option) and needs to either be force-closed or exited with the steam overlay option so IDK if thats the causes it. I did test a few other games that do exit through there menus (such as a hat in time) and they also exhibit the same issue when closed trough steam so that might be why |
Ah ic, ok then there is no need to further debug this. you can stop any game f.e. via hotkey using it.
on the Stream Deck (the kill switch is also in the steamtinkerlaunch tray icon) closing here |
on version SteamTinkerLaunch v9.3.20220421
the steamwebhelper function does not stop the steamwebhelper process ( tested with trails of cold steel 3)
EDIT:
for now my workaround is to create a bash script that
for i in $(pidof steamwebhelper); do kill -SIGSTOP $i;done
in it and another one that has
for i in $(pidof steamwebhelper); do kill -SIGCONT $i;done
and add them to the start and end section of the gamemode config
Trying to figure out how to fix the code myself unfortunately I never really have worked with bash before (in fact I didn't come up with the above command someone on discord help me with it) I worked with c++, python, and java but very little in bash
The text was updated successfully, but these errors were encountered: