• 31 Posts
  • 1.28K Comments
Joined 2 years ago
cake
Cake day: July 8th, 2023

help-circle







  • I would try /home/zidane/Downloads/RuneLite.AppImage # %command% as the launch option.

    To break down your original launch options:

    • echo is a program to output any text that follows it
    • %command% is whatever Steam would have used originally to start the game. If this is not used in the launch options it would be in front of the options.
    • the semicolon ; means “end of command”.
    • /home/zidane/Downloads/RuneLite.AppImage is of course the command to launch RuneLite

    In my commandline arguments # indicates the start of a comment. Everything after it should be ignored.

    I hope this fixes it for you.











  • I’ve made an update script that tries to run the migrations and index updates in one go.

    #!/bin/bash
    /usr/bin/php8.3 /cloud/updater/updater.phar --no-interaction --no-backup
    /usr/bin/php8.3 /cloud/occ maintenance:repair --include-expensive
    /usr/bin/php8.3 /cloud/occ db:add-missing-indices
    

    The updater itself is by far the slowest of the three commands. I think downloading the new version into a different folder and just moving apps and files over would be much quicker. But I haven’t had the time to look at potential errors with that method.