From 38a7985761ab9c960e04d49abc84aad2a4464a3e Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Tue, 4 Jan 2022 17:45:11 -0500 Subject: [PATCH] Default to 1080p --- bin/mirror-outputs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mirror-outputs b/bin/mirror-outputs index 09d794a..2e9cbba 100755 --- a/bin/mirror-outputs +++ b/bin/mirror-outputs @@ -1,6 +1,6 @@ #!/bin/bash ## Simple script to mirror all connected displays for presentations -RESOLUTION=3840x2160 +RESOLUTION=1920x1080 xrandr --listmonitors | sed -n '1!p' | sed -e 's/\s[0-9].*\s\([a-zA-Z0-9\-]*\)$/\1/g' | xargs -n 1 -- bash -xc 'xrandr --output $0 --mode '$RESOLUTION' --pos 0x0 --rotate normal'