this post was submitted on 08 Feb 2024
24 points (92.9% liked)

Linux Gaming

14793 readers
54 users here now

Gaming on the GNU/Linux operating system.

Recommended news sources:

Related chat:

Related Communities:

Please be nice to other members. Anyone not being nice will be banned. Keep it fun, respectful and just be awesome to each other.

founded 4 years ago
MODERATORS
 

Hi folks, I'm tinkering a lot with bash scripts and I wonder if it is possible to make steam launch when the steamlink on my appleTV pings the computer to find out if it is working.

The issue is that I sometimes sit down at my TV and want to play, finding out my Steam Machine is offline due to steam not running, it being suspended or shut down.

Since the appleTV shouldnt be pinging the PC if steamlink is off it shouldnt be an issue, right?

Bonus points: Obviously I would then like to expand this to wake on lan but I'd also need games to run without login then. Does anyone have ideas to this?

Thanks for reading and have a good one.

you are viewing a single comment's thread
view the rest of the comments
[–] 9point6 17 points 4 months ago (3 children)

So valve had an open source SDK for the original steam link hardware box here: https://github.com/ValveSoftware/steamlink-sdk

I've not poked around it, but I'd try going through the source to see if you can figure out how the discovery protocol works. I'd guess it's a bonjour-like mDNS or UPnP based system, so you'd be looking to write a piece of listener software for whatever its discovery protocol is and then have it do what you like when it detects the discovery requests.

If you want to do it with wake on LAN too, run the application on a raspberry pi or something to then WOL your main PC.

[–] [email protected] 6 points 4 months ago (1 children)

It might be easier to just fire up Wireshark and look for relevant traffic when you trigger the action.

[–] [email protected] 2 points 4 months ago

I would try this route first.

Here is my logic: it's the effort to find what you are looking for in a bunch of files and I don't know how many lines of source code versus the effort to search for some packets (which you should listen for anyway in the final solution) sent from a specific IP address over a relatively small amount of time.

load more comments (1 replies)