Add the required files for Steam discovery

There are two files describing the compatibility tool,

* `compatibilitytool.vdf`, useful if ULWGL is installed under
`.local/share/Steam/compatibilitytools.d`

* `ulwgl.vdf`, can be installed in `.local/share/Steam/compatibilitytools.d`
and allows Steam to use ULWGL from the `.local/share/ULWGL` path
This commit is contained in:
Stelios Tsampas 2024-02-13 22:22:35 +02:00
parent b24ef40afa
commit bfebd77f24
3 changed files with 27 additions and 2 deletions

13
compatibilitytool.vdf Normal file
View File

@ -0,0 +1,13 @@
"compatibilitytools"
{
"compat_tools"
{
"ULWGL" // Internal name of this tool
{
"install_path" "."
"display_name" "Unified Linux Wine Game Launcher"
"from_oslist" "windows"
"to_oslist" "linux"
}
}
}

View File

@ -1,9 +1,8 @@
// Generated file, do not edit // Generated file, do not edit
"manifest" "manifest"
{ {
"commandline" "/ULWGL --verb=%verb% --" "commandline" "/ulwgl-run %verb%"
"version" "2" "version" "2"
"use_tool_subprocess_reaper" "1" "use_tool_subprocess_reaper" "1"
"unlisted" "1"
"compatmanager_layer_name" "container-runtime" "compatmanager_layer_name" "container-runtime"
} }

13
ulwgl.vdf Normal file
View File

@ -0,0 +1,13 @@
"compatibilitytools"
{
"compat_tools"
{
"ULWGL" // Internal name of this tool
{
"install_path" "../../ULWGL"
"display_name" "Unified Linux Wine Game Launcher"
"from_oslist" "windows"
"to_oslist" "linux"
}
}
}