diff options
Diffstat (limited to '.scripts/screensetup.sh')
-rwxr-xr-x | .scripts/screensetup.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.scripts/screensetup.sh b/.scripts/screensetup.sh new file mode 100755 index 0000000..31d9c3a --- /dev/null +++ b/.scripts/screensetup.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +if [[ $(xrandr --query | grep "eDP-1-1" ) ]]; then + if [[ $(cat /proc/acpi/button/lid/LID/state | awk '{print $2}') = "closed" ]]; then + xrandr --output HDMI-0 --primary --mode 1920x1080 --pos 1920x0 --rotate normal --output eDP-1-1 --off + else + xrandr --output HDMI-0 --primary --mode 1920x1080 --pos 1920x0 --rotate normal --output eDP-1-1 --mode 1920x1080 --pos 0x489 --rotate normal # monitor front, laptop left + fi +fi |