Created
June 5, 2015 06:11
-
-
Save jmhertlein/817130af2f6fd594e929 to your computer and use it in GitHub Desktop.
WoW launch script w/ wine for nvidia hardware
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
#!/bin/bash | |
WOWPATH="/home/joshua/.wine/drive_c/Program Files (x86)/World of Warcraft" | |
cd "$WOWPATH" | |
if [ "$1" == "launcher" ]; then | |
WINEDEBUG=-all wine "World of Warcraft Launcher.exe" | |
elif [ "$1" == "kill" ]; then | |
wineserver -k | |
else | |
WINEDEBUG=-all __GL_THREADED_OPTIMIZATIONS=1 wine 'Wow-64.exe' -opengl | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment