Configure a single HDMI screen on my dock

This commit is contained in:
Felix Van der Jeugt 2020-03-14 13:35:28 +01:00
parent d6364c17a2
commit 9aa14a2ab2
No known key found for this signature in database
GPG Key ID: 58B209295023754D
1 changed files with 6 additions and 3 deletions

View File

@ -5,14 +5,17 @@ xset dpms 0 0 0
dp1="$(xrandr | grep '^DP1 connected')"
dp1_1="$(xrandr | grep '^DP1-1 connected')"
dp1_2="$(xrandr | grep '^DP1-2 connected')"
dp1_3="$(xrandr | grep '^DP1-3 connected')"
if [ -n "$dp1" -a -z "$dp1_1" -a -z "$dp1_2" ]; then
if [ -n "$dp1" -a -z "$dp1_1" -a -z "$dp1_2" -a -z "$dp1_3" ]; then
xrandr --output DP1 --auto --above eDP1
elif [ -z "$dp1" -a -n "$dp1_1" -a -z "$dp1_2" ]; then
elif [ -z "$dp1" -a -n "$dp1_1" -a -z "$dp1_2" -a -z "$dp1_3" ]; then
xrandr --output DP1-1 --auto --above eDP1
elif [ -z "$dp1" -a -n "$dp1_1" -a -n "$dp1_2" ]; then
elif [ -z "$dp1" -a -n "$dp1_1" -a -n "$dp1_2" -a -z "$dp1_3" ]; then
xrandr --output DP1-1 --auto --left-of eDP1 \
--output DP1-2 --auto --right-of eDP1
elif [ -z "$dp1" -a -z "$dp1_1" -a -z "$dp1_2" -a -n "$dp1_3" ]; then
xrandr --output DP1-3 --auto --above eDP1
fi
~/.fehbg