pikdum / steam-deck

steam deck tools, currently only vortex
MIT License
144 stars 11 forks source link

Vortex cannot find some real files in its explorer #51

Closed TigerBeanst closed 9 months ago

TigerBeanst commented 11 months ago

I can find modsettings.lsx in /home/deck/.local/share/Steam/steamapps/compatdata/1086940/pfx/drive_c/users/steamuser/AppData/Local/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/

Screenshot_20230929_034423

But in Vortex, using its explorer, I cannot find it, the Public folder is empty.

Screenshot_20230929_034746

This seems to directly result in me being unable to deploy mods properly.

Screenshot_20230929_035045

pikdum commented 11 months ago

Simplified, everything under Proton has a separate 'Windows install'.

So what you're seeing in Vortex is under ~/.vortex-linux/compatdata/pfx/drive_c/ rather than ~/.local/share/Steam/steamapps/compatdata/1086940/pfx/drive_c/.

So if Vortex needs some files, some solutions:

Symlink approach is probably the cleanest, maybe something like:

rm -rf "$HOME/.vortex-linux/compatdata/pfx/drive_c/users/steamuser/AppData/Local/Larian Studios/Baldur's Gate 3/"
ln -s "$HOME/.local/share/Steam/steamapps/compatdata/1086940/pfx/drive_c/users/steamuser/AppData/Local/Larian Studios/Baldur's Gate 3" "$HOME/.vortex-linux/compatdata/pfx/drive_c/users/steamuser/AppData/Local/Larian Studios/Baldur's Gate 3"

(Untested, and I don't have the game either)