I have a triple monitor setup. My left and center monitors are at 60FPS but my rightmost monitor is at 144 fps.
When I put Xonotic on the rightmost monitor with vsync enabled, it is till only 60FPS. Is there a way to get it up to 144fps?
I run the following xrandr script to set it up.
When I put Xonotic on the rightmost monitor with vsync enabled, it is till only 60FPS. Is there a way to get it up to 144fps?
I run the following xrandr script to set it up.
Code:
#!/bin/sh
#Make sure HDMI Cable is on the right and DP cable is on the left
if [ "$1" ]; then
x_res=1920
y_res=1080
x1=$(echo "$y_res * $1" | bc)
x1=$(printf '%.0f\n' "$x1")
x2=$(($x1 + 3840))
xrandr --output HDMI-0 --mode ${x_res}x${y_res} --scale $1x$1 --rotate left --pos 0x36 --panning 0x0+0+36 --output DP-0 --pos ${x1}x0 --auto --primary --output DP-1 --mode ${x_res}x${y_res} --scale $1x$1 --rotate normal --pos ${x2}x36 --panning 0x0+${x2}+36 -r 144.0
else
echo "Usage: $0 [Scale]"
fi