8 lines
163 B
Text
8 lines
163 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Disable annoying mouse accel
|
||
|
xinput --set-prop 13 'libinput Accel Speed' '-1'
|
||
|
|
||
|
# Set refresh rate
|
||
|
xrandr --output HDMI-A-0 --mode 1920x1080 --rate 75
|