Battle.net: Difference between revisions

From NixOS Wiki
imported>Mweinelt
Created page with "The Battle.net Launcher can be installed and launched via wine, which works pretty well. To play most of its games a recent wine-staging version is recommended. == Setup ==..."
 
imported>Mweinelt
m remove de-de locale
Line 21: Line 21:
   winetricks dxvk
   winetricks dxvk


Download the <code>Battle.net-Setup.exe</code> from https://www.blizzard.com/de-de/apps/battle.net/desktop and install it by executing
Download the <code>Battle.net-Setup.exe</code> from https://www.blizzard.com/apps/battle.net/desktop and install it by executing


   wine64 Battle.net-Setup.exe
   wine64 Battle.net-Setup.exe

Revision as of 08:26, 6 January 2021

The Battle.net Launcher can be installed and launched via wine, which works pretty well. To play most of its games a recent wine-staging version is recommended.

Setup

Tested on nixos-unstable with wine-staging 5.22 and found to be working with World of Warcraft 9.0.2:

 users.users.youruser.packages = with pkgs; [
   (wineWowPackages.full.override {
     wineRelease = "staging";
     mingwSupport = true;
   })
   (winetricks.override {
     wine = wineWowPackages.staging;
   })
 ];

Create a 64-bit wine prefix and enable DXVK support.

 export WINEARCH=win64
 export WINEPREFIX=$HOME/.wine-battlenet
 winetricks dxvk

Download the Battle.net-Setup.exe from https://www.blizzard.com/apps/battle.net/desktop and install it by executing

 wine64 Battle.net-Setup.exe

Follow the installation and upon completion login in with your Battle.net Id or create one.

The Launcher should now start up and allow you to install and launch games.