17 lines
344 B
Plaintext
17 lines
344 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
xrandr \
|
||
|
--output eDP-1 \
|
||
|
--primary \
|
||
|
--mode 1920x1080 \
|
||
|
--pos 0x0 \
|
||
|
--rotate normal \
|
||
|
--output DP-1 --off \
|
||
|
--output HDMI-1 --off \
|
||
|
--output DP-2 --off \
|
||
|
--output HDMI-2 \
|
||
|
--mode 1920x1080 \
|
||
|
--pos 0x0 \
|
||
|
--rotate normal \
|
||
|
--brightness 0.9
|