6 lines
208 B
Bash
Executable File
6 lines
208 B
Bash
Executable File
#!/bin/sh
|
|
xrandr --output DVI-D-0 --off \
|
|
--output HDMI-0 --mode 1920x1080 --pos 0x-1080 --rotate normal \
|
|
--output DP-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal \
|
|
--output DP-1 --off
|