Displaying 1 result from an estimated 1 matches for "mouse_sensitivity".
2006 Jul 08
0
[tip] running games on a dedicated display
...A="1.75"
winerun.sh "$PROGRAM" $SCREEN_RES $SCREEN_BPP $GAMMA
[snip]
Here's the winerun.sh script. Feel free to tweak it to your liking (esp
mouse sensitivity).
[snip]
PROGRAM=$1
SCREEN_RES=$2
SCREEN_BPP=$3
GAMMA=$4
# Sensitivity works according to "xset mouse"
MOUSE_SENSITIVITY="1.15/15"
# Display number to use
DISPLAY_NUMBER=":1"
# Nice priority to give to wine. Note some games (ex Starcraft) do not
like -20.
PRIORITY=-10
# extract
APPDIR=${PROGRAM%/*}
APPEXE=./${PROGRAM##*/}
SCRIPT="xgamma -gamma $GAMMA
xset mouse $MOUSE_SENSITIVITY
cd \&q...