Skip to content
Snippets Groups Projects
Commit 1f3f8d34 authored by Timothee Besset's avatar Timothee Besset
Browse files

Fix support for latest SteamOS main

parent 04920dbb
No related branches found
No related tags found
No related merge requests found
...@@ -283,7 +283,7 @@ if __name__ == '__main__': ...@@ -283,7 +283,7 @@ if __name__ == '__main__':
os_info = get_os_info() os_info = get_os_info()
assert os_info is not None assert os_info is not None
steamdeck = os_info.get('VARIANT_ID', None) == 'steamdeck' steamdeck = os_info.get('VARIANT_ID', None).startswith('steamdeck')
os_name = os_info.get('PRETTY_NAME', None) os_name = os_info.get('PRETTY_NAME', None)
os_version = os_info.get('BUILD_ID', None) os_version = os_info.get('BUILD_ID', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment