mescripts/screenlayout.sh
2025-03-13 21:41:25 +01:00

30 lines
445 B
Bash
Executable File

#!/bin/sh
xrandr \
--output HDMI-0 \
--off \
--output HDMI-1 \
--off \
--output DP-0 \
--mode 3840x2160 \
--rate 60 \
--pos 0x0 \
--rotate right \
--output DP-1 \
--off \
--output DP-2 \
--mode 2560x1440 \
--rate 60 \
--pos 2160x800 \
--rotate normal \
--output DP-3 \
--off \
--output DP-4 \
--primary \
--mode 2560x1440 \
--rate 240 \
--pos 2160x2240 \
--rotate normal \
--output DP-5 \
--off
# EOF