commit 85a1b71c621f2fc2e05fa2ede0bc04cb9ba621fb parent 116c6162dbdbfb1fb0dbe1b5422d5fac9927dfbf Author: Daniel Moch <daniel@danielmoch.com> Date: Sat, 12 Dec 2020 15:50:57 -0500 screen.carbon: Use proper DisplayPort Diffstat:
M | bin/screen.carbon | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/bin/screen.carbon b/bin/screen.carbon @@ -1,6 +1,6 @@ #!/bin/sh -expected="eDP-1 DP-1-3" +expected="eDP-1 DP-1-2" for mon in $expected do @@ -19,9 +19,9 @@ do if [ "$mon" = "eDP-1" ] then cmd="$cmd --output eDP-1 --auto --primary" - elif [ "$mon" = "DP-1-3" ] + elif [ "$mon" = "DP-1-2" ] then - cmd="$cmd --output DP-1-3 --auto --right-of eDP-1 --scale 2x2" + cmd="$cmd --output DP-1-2 --auto --right-of eDP-1 --scale 2x2" fi done