mrblondeisback
April 7th, 2009, 04:24 PM
So I'm trying to run WoW in it's own X, because I keep hearing that it improves performance. I set up this script to do it:
#!/bin/sh
X :3 -ac & nvidia-settings --load-config-only # Launches a new X session on display 3
cd "/home/zaphodb2002/.wine/drive_c/Program Files/World of Warcraft" # Goto WoW dir
sleep 2 # Forces the system to have a break for 2 seconds
DISPLAY=:3 WINEDEBUG=-all wine "C\:Program Files\World of Warcraft\wow.exe" -opengl # Launches WoW
But whenever I run it it tells me I don't have permission to run X. How can I give myself the appropriate permission?
#!/bin/sh
X :3 -ac & nvidia-settings --load-config-only # Launches a new X session on display 3
cd "/home/zaphodb2002/.wine/drive_c/Program Files/World of Warcraft" # Goto WoW dir
sleep 2 # Forces the system to have a break for 2 seconds
DISPLAY=:3 WINEDEBUG=-all wine "C\:Program Files\World of Warcraft\wow.exe" -opengl # Launches WoW
But whenever I run it it tells me I don't have permission to run X. How can I give myself the appropriate permission?