dotfiles/bin/xrandr/monitor_setup.sh

8 lines
209 B
Bash
Raw Normal View History

2019-02-05 19:31:53 +00:00
#!/bin/bash
2020-01-21 09:39:32 +00:00
left=DP-1-2-2
middle=DP-1-2-3
right=eDP-1
2019-02-05 19:31:53 +00:00
2020-01-21 09:39:32 +00:00
xrandr --output "$middle" --auto --primary && xrandr --output "$left" --auto --left-of "$middle" && xrandr --output "$right" --auto --right-of "$middle"