dot_testing/scripts/disp

23 lines
524 B
Plaintext
Raw Normal View History

2021-02-15 12:02:09 -06:00
#!/bin/sh
exists() {
xrandr | grep ' connected' | grep "${1}" | wc -l
}
2021-04-26 11:07:35 -05:00
if [ $(exists "HDMI2") -eq 1 ] && [ $(exists "LVDS1") -eq 1 ]; then
xrandr --output LVDS1 --below HDMI2 --auto
bspc monitor LVDS1 I II III IV V
bspc monitor HDMI2 VI VII VIII IX
exit 0
fi
if [ $(exists "HDMI1") -eq 1 ] && [ $(exists "LVDS1") -eq 1 ]; then
xrandr --output LVDS1 --below HDMI1 --auto
bspc monitor LVDS1 I II III IV V
bspc monitor HDMI1 VI VII VIII IX
exit 0
fi
bspc monitor -d I II III IV V VI VII VIII IX X
exit 0