Last active
November 2, 2020 13:09
-
-
Save PedroHLC/a95b672d2949b5a572e3fb1d1e180fed to your computer and use it in GitHub Desktop.
I don't play League of Legends, but I was challenged, and here's what I did to get it running flawless!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo pacman -Sy | |
sudo powerpill -Su dxvk-mingw-git wine-tkg-git-leagueoflegends winetricks-git | |
export WINEPREFIX="$HOME/.lol" | |
export WINE=/usr/bin/wine | |
export WINEARCH=win32 | |
winetricks d3dcompiler_43 d3dx9 | |
setup_dxvk install --symlink | |
cd /tmp | |
aget 'https://riotgamespatcher-a.akamaihd.net/releases/live/installer/deploy/League%20of%20Legends%20installer%20NA.exe' | |
echo 0 | sudo tee /proc/sys/abi/vsyscall32 | |
"$WINE" 'League of Legends installer NA.exe' # Don't launch at the end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export WINEPREFIX="$HOME/.lol" | |
export WINE=/usr/bin/wine | |
export WINEARCH=win32 | |
cd "$WINEPREFIX/drive_c/Riot Games/League of Legends" | |
echo 0 | sudo tee /proc/sys/abi/vsyscall32 | |
gamemoderun "$WINE" LeagueClient.exe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
aget
is an alias foraria2c -s 16 -x 16 -j 16 -k 1M
(requires packagearia2
)