[Steam Deck] Is it possible to make it autorun while in gaming mode?
Closed this issue · 16 comments
so no need to go to desktop mode
maybe natively implement this ?
https://www.reddit.com/r/SteamDeck/comments/vocyi5/start_syncthing_automatically_on_steamdeck_even/?sort=new
Yes I was thinking about this as well, I will definitely take a look.
The downside of this will be, that there won't we an easy way to stop it from game mode and / or check if it is still running.
Yes I was thinking about this as well, I will definitely take a look.
The downside of this will be, that there won't we an easy way to stop it from game mode and / or check if it is still running.
Well, at least you have the option to fire up chrome in Gaming Mode and access the web interface.
Well, at least you have the option to fire up chrome in Gaming Mode and access the web interface.
That is true and probably the best solution. I did think about this problem a fair bit and sadly it looks like that there is no easy / convenient solution to make this work without the user having to run at least one console command.
Maybe a function in the system tray called 'Install Service' (or something like that) that runs something like systemctl --user enable --now syncthingy.service
Obviously the Program needs to create the service file beforehand.
That is sadly not possible, the Flatpak sandbox does not allow me to run commands on the host. That will always have to be done by the user manually.
There is a way to allow execute permissions, but that will not get approved on FlatHub if my only reason to request it is "user convenience".
You can create your own systemd service file and launch the flatpak syncthing like so.
First create the service file:
(deck@xamdeck user)$ cat /home/deck/.config/systemd/user/syncthing.service
[Unit]
Description=Syncthing[Service]
Type=simple
ExecStart=flatpak run --branch=stable --arch=x86_64 --command=syncthing com.github.zocker_160.SyncThingy
Restart=on-failure
RestartSec=1
SuccessExitStatus=3 4[Install]
WantedBy=default.target
(deck@xamdeck user)$
Then enable and start the service with "systemctl --user enable --now syncthing". Syncthing will now run in both gaming and desktop modes.
However, it appears the dev has not accounted for syncthing already running. As a result, the SyncThingy tray program (in desktop mode) will open for a few seconds, then close without any indication of why. Best to probably use the syncthing-gtk flatpak for now as that one is designed to manage an already running syncthing service.
@xamindar , @lyndonguitar wants a convenient way to do it in gaming mode, different from creating a systemd file in desktop mode
@xamindar , @lyndonguitar wants a convenient way to do it in gaming mode, different from creating a systemd file in desktop mode
@jmqm , then please provide info on where the systray is located in gaming mode or how to autostart background services through steam. Until then, running it as a systemd service is the only way to make it autorun in gaming mode. Also, maybe try posting something actually useful next time.
@xamindar yikes, you get offended for no reason? There is no convenient way of doing it so original poster is asking if it can be added. What's your problem?
The systemd instruction is in the Reddit post mentioned previously so you didn't provide anything useful, just minor change.
And don't tell me what to do :) I won't follow anyway
Maybe you could have a menu option 'Install service' that just shows a dialog with the steps to follow:
- Open terminal (with link that opens the terminal app? not sure if possible)
- Copy this command -> copies one liner that does the service setup
- Tell the user to run the copied command in the terminal
This should be doable with just the touch screen of the Steam Deck, provided the buttons are big enough.
here a quick summary of the problem:
- I am currently not supporting the use case of having syncthing running in the background
- SyncThingy closes on start silently in that case, because the port is already blocked
- I cannot register and run a systemd service from inside flatpak (user action will always be required)
- There is no simple way to manage (aka start / stop / check status etc) Syncthing from game mode as there is no such thing as a tray and getting an entry into the global Steam Deck overlay menu is not trivial.
solutions I can offer:
- I can look into a way to check if SyncThingy flatpak is already running (including as service) and make the systray show up as it should
- I am not interested in supporting the use case of having any syncthing process running somewhere in the system and attach to that as it will cause a lot of problems mainly because:
- the "other" syncthing instance will have different settings than the "internal" one shipped with the flatpak
- I cannot control the version of the "other" syncthing instance
- Similar to (1) and I can implement an error message in case the port is blocked by non SyncThingy process
- I can create the systemd service file when the user requests it and then show a command the user then has to run manually in the terminal
- I cannot think of any solution for problem (4) apart from opening a browser in game mode and navigating to the syncthing webui
thoughts?
I think definitely implementing 1 and possibly 4 would be a good idea. That would cover the "want to run syncthing all the time" crowd.
Yes I know it has been over 2 month, but I finally found the time to implement this.
I have implemented from the numbers above:
- 1 using the health check API that Syncthing provides
- 3 is kinda implemented, it will show a message with
Syncthing failed to start! exit code (1)
- 4 is kinda implemented, I added a command to the settings which can be copied and that will use the systemd unit file I am providing in this repository, with this approach I am not misusing the folder permissions granted.
It useswget
to pull the file, which IIRC is preinstalled on SteamOS.
I will be pushing this new version to flathub-beta first for further testing.
New version 0.6 is now available on Flathub-beta, let me know what you think.
From my testing it is looking good so far.
pushed to stable, should be rolled out to everybody within the next hour or so