This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.local/bin/X11/monitors.sh

19 lines
449 B
Bash
Executable File

#!/bin/sh
status=$(xrandr | grep " connected")
# Built-int monitor
xrandr --output eDP-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal
if echo "$status" | grep "HDMI-1"; then
xrandr --output HDMI-1 --mode 1920x1080 --pos 1920x0 --rotate normal
else
xrandr --output HDMI-1 --off
fi
if echo "$status" | grep "DP-2"; then
xrandr --output DP-2 --mode 1920x1080 --pos -1920x0 --rotate normal
else
xrandr --output DP-2 --off
fi