mirror of
https://github.com/ayufan/steam-deck-tools.git
synced 2026-01-08 17:50:14 +01:00
- Allow to configure Steam controller blacklisting to enable X360 exclusive mode. - This allows to switch seemlessly between different modes of operation. - This also changes how application and when detects Steam.
15 lines
795 B
XML
15 lines
795 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<configSections>
|
|
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
|
<section name="SteamController.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
|
|
</sectionGroup>
|
|
</configSections>
|
|
<userSettings>
|
|
<SteamController.Settings>
|
|
<setting name="EnableSteamDetection" serializeAs="String">
|
|
<value>False</value>
|
|
</setting>
|
|
</SteamController.Settings>
|
|
</userSettings>
|
|
</configuration> |