mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-02 12:18:41 -05:00
19 lines
449 B
Bash
Executable File
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
|