diff options
Diffstat (limited to 'bin/dual-monitor')
-rwxr-xr-x | bin/dual-monitor | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/dual-monitor b/bin/dual-monitor new file mode 100755 index 0000000..9ed4d10 --- /dev/null +++ b/bin/dual-monitor @@ -0,0 +1,16 @@ +#!/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 |