2021-07-29 14:02:20 +00:00
|
|
|
# Reconfigure two side-by-side 4k and FHD displays via xrandr
|
2020-10-03 09:34:04 +00:00
|
|
|
k4=$(xrandr | grep -1 ' 3840' | grep ' connected ' | cut -d' ' -f1)
|
|
|
|
k2=$(xrandr | grep -1 ' 1920' | grep ' connected ' | cut -d' ' -f1)
|
|
|
|
|
2020-03-08 18:58:52 +00:00
|
|
|
#xrandr --output $dp --auto --output $hdmi --mode 1680x1050 --scale 2x2 --right-of $dp && xrandr --output $hdmi --mode 1920x1080
|
2020-12-15 20:46:12 +00:00
|
|
|
if test "$1" == "left"
|
|
|
|
then xrandr --output $k2 --auto --scale 2x2 --pos 0x0 --output $k4 --auto --scale 1x1 --pos 3841x0
|
|
|
|
else xrandr --output $k4 --auto --scale 1x1 --pos 0x0 --output $k2 --auto --scale 2x2 --mode 1920x1080 --pos 3841x0
|
|
|
|
fi
|
2020-10-03 09:34:04 +00:00
|
|
|
#--fb 7681x2160
|
2020-03-08 18:58:52 +00:00
|
|
|
#xrandr --output $dp --auto --scale 0.5x0.5 --output $hdmi --scale 1x1 --mode 1920x1080 --fb 5760x1080 --right-of $dp
|