Fix default Steam path because fuck me

This commit is contained in:
kramo
2023-07-06 10:02:11 +02:00
parent 2952322759
commit c3cad7c793
2 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
<default>true</default> <default>true</default>
</key> </key>
<key name="steam-location" type="s"> <key name="steam-location" type="s">
<default>"~/.steam/"</default> <default>"~/.steam/steam"</default>
</key> </key>
<key name="lutris" type="b"> <key name="lutris" type="b">
<default>true</default> <default>true</default>

View File

@@ -118,9 +118,9 @@ class SteamSource(URLExecutableSource):
data_location = Location( data_location = Location(
schema_key="steam-location", schema_key="steam-location",
candidates=( candidates=(
shared.flatpak_dir / "com.valvesoftware.Steam" / "data" / "Steam", shared.home / ".steam" / "steam",
shared.data_dir / "Steam", shared.data_dir / "Steam",
shared.home / ".steam", shared.flatpak_dir / "com.valvesoftware.Steam" / "data" / "Steam",
shared.programfiles32_dir / "Steam", shared.programfiles32_dir / "Steam",
), ),
paths={ paths={