1957081c12
For a while I was keeping a private branch where there were a lot of non-public things included, and that became the de-facto branch while this one lagged. This one is now up-to-date, all private stuff is dealt with via config files which are not committed.
17 lines
344 B
Bash
Executable File
17 lines
344 B
Bash
Executable File
#!/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
|