Last active
May 9, 2018 02:04
-
-
Save tonylambiris/3154532e61b4787aeaf4a52de03de583 to your computer and use it in GitHub Desktop.
Script for configuring Steam under Wine using winetricks
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
| #!/usr/bin/env bash | |
| curl -o "$HOME/bin/winetricks" \ | |
| https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks | |
| chmod +x "$HOME/bin/winetricks" | |
| while pgrep -fla '^(wine|C:\\).*exe'; do pkill -f '^(wine|C:\\).*exe'; sleep 1; done | |
| rm -rf ~/.wine | |
| regsvr32 wineasio.dll | |
| wine64 regsvr32 wineasio.dll | |
| winetricks --self-update | |
| winetricks -q corefonts tahoma d3dcompiler_43 d3dx9_43 d3dx10_43 ie8 \ | |
| msls31 msxml6 vcrun6sp6 vb6run vcrun2008 vcrun2010 vcrun2015 xact \ | |
| winhttp wininet dotnet46 steam win2k3 glsl=enabled ddr=opengl sound=pulse |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment