pikdum / steam-deck

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

Fallout 4 Post Deploy lacks permissions? #72

Closed finnishamerican closed 4 months ago

finnishamerican commented 4 months ago

Fails to create a directory and certain f4se mods just don't seem to run. Trying to chase down why.

edit: it’s mainly HUD/overlay mods like Condition Boy and Gas Masks of the Wasteland/Nuclear Winter.

acovaci commented 4 months ago

Judging by the post time, I assume you're running next gen?

If yes, just add two extra lines in /home/deck/.pikdum/steam-deck-master/vortex/fallout4-post-deploy.sh:

echo "Copying loadorder.txt and plugins.txt"
mkdir -p "$APPDATA_INTERNAL" || true
mkdir -p "$APPDATA_EXTERNAL" || true
cp "$APPDATA_VORTEX"/* "$APPDATA_INTERNAL" || true
cp "$APPDATA_VORTEX"/* "$APPDATA_EXTERNAL" || true
cp "$APPDATA_VORTEX"/plugins.txt "$APPDATA_INTERNAL"/Plugins.txt || true # THIS
cp "$APPDATA_VORTEX"/plugins.txt "$APPDATA_EXTERNAL"/Plugins.txt || true # THIS

echo "Success! Exiting in 3..."
sleep 3

Basically the plugin.txt file is now capitalised

acovaci commented 4 months ago

Huh, never mind, I completely missed the permission lines. I assume that's because you don't have an SD card inserted?

You can safely ignore those errors if so.

The reason for not deploying is still most likely my comment above.

pikdum commented 4 months ago

Maybe this is the same issue as https://github.com/pikdum/steam-deck/issues/67 then?

pikdum commented 4 months ago

Latest update should've fixed. Feel free to re-open if it hasn't.