Add monitor configuration script

This commit is contained in:
Tyler Perkins 2023-11-25 18:10:39 -05:00
parent aaeb6401a9
commit 3ba56a1a13
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
1 changed files with 21 additions and 0 deletions

21
fix_screens Executable file
View File

@ -0,0 +1,21 @@
#!/bin/bash
echo "Setting monitors for triple monitor setup..."
#turn on the screens
#xrandr --output DisplayPort-1 --auto
#xrandr --output HDMI-0 --auto
#xrandr --output DP-0.2 --auto
#xrandr --output DP-3 --primary
#arrange them in the 3 monitor config
#xrandr --output DisplayPort-1 --mode 1920x1080 --rate 164.6
#xrandr --output HDMI-A-0 --left-of DisplayPort-0 --rate 165 --mode 1920x1080
#xrandr --output DisplayPort-0 --right-of DisplayPort-1 --rate 165 --mode 1920x1080
xrandr --output DisplayPort-0 --mode 1920x1080 --rate 164.6
xrandr --output HDMI-A-0 --left-of DisplayPort-0 --rate 165 --mode 1920x1080
xrandr --output DisplayPort-1 --right-of DisplayPort-0 --rate 165 --mode 1920x1080
xrandr --output DisplayPort-2 --rate 165 --mode 1920x1080
notify-send "Screens" "Screens reconfigured for triple monitor setup"