Exemplo n.º 1
0
 def run_winetricks(self, *args):
     """Run winetricks in the current context"""
     self.prelaunch()
     winetricks("",
                prefix=self.prefix_path,
                wine_path=self.get_executable(),
                config=self)
Exemplo n.º 2
0
        def on_steam_downloaded(*_args):
            prefix = self.get_or_create_default_prefix()

            # Install CJK fonts in the Steam prefix before Steam
            winetricks("cjkfonts", prefix=prefix, wine_path=self.get_executable())
            wineexec(
                installer_path,
                args="/S",
                prefix=prefix,
                wine_path=self.get_executable(),
            )
            if callback:
                callback()
Exemplo n.º 3
0
        def on_steam_downloaded(*_args):
            prefix = self.get_or_create_default_prefix()

            # Install CJK fonts in the Steam prefix before Steam
            winetricks("cjkfonts",
                       prefix=prefix,
                       wine_path=self.get_executable())
            self.msi_exec(
                installer_path,
                quiet=True,
                prefix=prefix,
                wine_path=self.get_executable(),
                working_dir="/tmp",
                blocking=True,
            )
            if callback:
                callback()
Exemplo n.º 4
0
        def on_steam_downloaded(*_args):
            prefix = self.get_or_create_default_prefix()

            # Install CJK fonts in the Steam prefix before Steam
            winetricks(
                "cjkfonts",
                prefix=prefix,
                wine_path=self.get_executable()
            )
            self.msi_exec(
                installer_path,
                quiet=True,
                prefix=prefix,
                wine_path=self.get_executable(),
                working_dir="/tmp",
                blocking=True,
            )
            if callback:
                callback()
Exemplo n.º 5
0
 def run_winetricks(self, *args):
     self.prelaunch()
     winetricks(
         "", prefix=self.prefix_path, wine_path=self.get_executable(), config=self
     )
Exemplo n.º 6
0
 def run_winetricks(self, *args):
     self.prelaunch()
     winetricks(
         "", prefix=self.prefix_path, wine_path=self.get_executable(), config=self
     )