arch/roles/dots/files/home/bin/multi_monitors
2024-09-04 00:54:15 +06:00

9 lines
491 B
Bash
Executable File

#!/bin/bash
if [ $1 == '-r' ]; then
xrandr --output HDMI1 --mode 3840x2160 --output eDP1 --mode 1920x1080 --rate 60 --right-of HDMI1
else
xrandr --output HDMI1 --mode 3840x2160 --output eDP1 --mode 1920x1080 --rate 60 --below HDMI1
fi
# xrandr --output HDMI1 --scale 1.5x1.5 --mode 3840x2160 --output eDP1 --scale 1x1 --mode 1920x1080 --rate 60 --below HDMI1
# xrandr --output HDMI1 --scale 2x2 --mode 3840x2160 --output eDP1 --scale 1x1 --mode 1920x1080 --rate 60 --below HDMI1