• @Spectacle8011A
    link
    English
    110 months ago

    Is your issue that Lutris is buggy or limiting? I haven’t encountered buggy behavior in Lutris, and it gives you a ton of options. I like some parts of bottles but I would really like to be able to change cover art without editing a config file, lol. It’s definitely the easiest way to get started with Wine though.

    There’s Heroic Games Launcher too, by the way. It has less features than Lutris but it’s probably easier to use? It’s also prettier than Lutris, I think. What issues were you having with Lutris?

    • @SSUPII@sopuli.xyz
      link
      fedilink
      English
      110 months ago

      To me, Lutris has always been a very stubborn application.

      • Saying a game is running while its not
      • saying a game is not running while it is
      • unclear library override versioning (whats the difference between disabled and Manual, why can’t I provide my own version from the UI directly then)
      • hard to troubleshoot as I cannot see at a glance how Wine is invoked and the logs tend to be hard to read inside the logs popup window
      • hard to see what winetricks is trying to do when invoked from it

      Yet, when I say it gets the job done I mean it. But the program itself adds some more headaches, yet I need it as I don’t know how to do half of what it does from a terminal and/ore scripts only.

      • @Spectacle8011A
        link
        English
        110 months ago

        Saying a game is running while its not saying a game is not running while it is

        Ah yeah, sometimes the process just hangs for ages.

        unclear library override versioning (whats the difference between disabled and Manual, why can’t I provide my own version from the UI directly then)

        First I’ve heard of this option actually. Are you talking about overriding DXVK versions, etc.? I see there’s a Manual option there. Just quickly digging through the sources:

            def version_choices(self):
                _choices = [
                    (_("Manual"), "manual"),
                ]
                for version in self.versions:
                    _choices.append((version, version))
                return _choices
        ...
            def setup(self, enable):
                """Enable or disable DLLs"""
        
                # manual version only sets the dlls to native (in get_enabling_dll_overrides())
                manager_version = self.version
                if not manager_version or manager_version.lower() != "manual":
                    if enable:
                        self.enable()
                    else:
                        self.disable()
        

        It seems like Manual just makes sure the Wineprefix uses the Native DLL…? Sometimes I feel like the Lutris sources are labyrinthine, lol. It really takes some time to unravel.

        I’m guessing it would just use whatever version of DXVK you manually installed in the Wineprefix, while disbaled would use the built-in DLL provided by wined3d.

        hard to troubleshoot as I cannot see at a glance how Wine is invoked and the logs tend to be hard to read inside the logs popup window

        Ah. My games tend to be simple enough that I run them through CLI first and do any troubleshooting there, then add an entry in Lutris.

        Yet, when I say it gets the job done I mean it. But the program itself adds some more headaches, yet I need it as I don’t know how to do half of what it does from a terminal and/ore scripts only.

        Well, it’s good to hear it’s working for you! What stuff don’t you know how to do in a terminal? I don’t think I’ve actually needed Lutris to do anything; it’s just easier.