fewtarius
fewtarius
RG353P, RG351V, and RG351MP all tested fine.
> This is happening in the current client on SteamOS as well. I noticed it in the beta client branch, and switched back to the stable client because I primarily...
> Thanks for the submission. Unfortunately it doesn't look like this would work for a SteamDeck > > ```shell > $ cat /sys/class/dmi/id/sys_vendor > Valve > > $ cat /sys/class/dmi/id/product_version...
Perhaps something like this? ``` if sys_vendor == "Valve" and product_version == "1": sys_vendor = "Steam" product_version = "Deck" ```
> I think that would work. It would also probably be fine for the time being to only check `sys_vendor` (I suppose this can be revisited if there's ever a...
It should work correctly now, I also noticed that I was using product_version incorrectly in my PR, that should have been product_name. I must have forgotten to change the variable...
> Hey @fewtarius, I'm finally getting around to doing some work on this, and I'm wondering if you happen to know what this would produce for other devices? Not sure...