diff --git a/config/xserver/screenlayout/workdock.sh b/config/xserver/screenlayout/workdock.sh index 8bc0a7e..f75d49d 100755 --- a/config/xserver/screenlayout/workdock.sh +++ b/config/xserver/screenlayout/workdock.sh @@ -1,10 +1,25 @@ #!/bin/sh -xrandr --output DP-0 --off\ - --output DP-4 --off\ - --output HDMI-0 --off\ - --output DP-1 --mode 1920x1080 --pos 0x0 --rotate normal\ - --output DP-2 --mode 2880x1800 --pos 3840x0 --rotate normal --scale 0.8x0.8\ - --output DP-3 --mode 1920x1080 --pos 1920x0 --rotate normal +if xrandr | grep -q "DP-0 connected"; then + xrandr \ + --output DP-0 --mode 1920x1080 --pos 0x0 --rotate normal --scale 1.5x1.5 --primary\ + --output DP-1 --off\ + --output DP-2 --mode 2880x1800 --pos 5760x0 --rotate normal --scale 0.8x0.8\ + --output DP-3 --off\ + --output DP-4 --mode 1920x1080 --pos 2880x0 --rotate normal --scale 1.5x1.5\ + --output HDMI-0 --off\ + ; +else + xrandr \ + --output DP-0 --off\ + --output HDMI-0 --off\ + --output DP-1 --mode 1920x1080 --pos 0x0 --rotate normal --scale 1.5x1.5 --primary\ + --output DP-2 --mode 2880x1800 --pos 5760x0 --rotate normal --scale 0.8x0.8\ + --output DP-3 --mode 1920x1080 --pos 2880x0 --rotate normal --scale 1.5x1.5\ + --output DP-4 --off\ + ; +fi + + ROLL=$(($RANDOM%4));