11 lines
301 B
Bash
Executable file
11 lines
301 B
Bash
Executable file
#!/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
|
|
xrandr --output "DisplayPort-0" --mode 1024x768 --rate 60
|
|
|
|
# Rotate my secondary monitor
|
|
xrandr --output "DisplayPort-0" --rotate "right"
|