Skip to content

Instantly share code, notes, and snippets.

@jmhertlein
Created June 5, 2015 06:11
Show Gist options
  • Save jmhertlein/817130af2f6fd594e929 to your computer and use it in GitHub Desktop.
Save jmhertlein/817130af2f6fd594e929 to your computer and use it in GitHub Desktop.
WoW launch script w/ wine for nvidia hardware
#!/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