FollieHiyuki-dotfiles/home/.local/bin/X11/monitors.sh

19 lines
449 B
Bash
Raw Normal View History

2021-03-11 06:22:29 -05:00
#!/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