Hello,

I'm trying to adjust the mouse sensitivity in a separate X server.

This is the script

Code:
#!/bin/sh

sudo X :3 -ac -terminate & 
sleep 10
DISPLAY=:3 `which wine` /home/bram/.wine/drive_c/Programma\ Bestanden/World\ of\ Warcraft/WoW.exe
Now I want to use the xset command on display :3. So basically I should try to add
Code:
xset 1/1 1
somewhere. I've tried several things like adding & xset 1/1 1 and |xset 1/1 1 after WoW.exe, but never really made any success.

I hope to find an answer here!