Compare commits

...

2 Commits

Author SHA1 Message Date
randomuser d37e632bd8 reflect dotfile changes 2022-08-01 18:32:00 -05:00
randomuser 0bc10fa4ef almost works, but desktops on second monitor do not work 2022-07-31 22:42:20 -05:00
1 changed files with 6 additions and 17 deletions

23
sh/disp
View File

@ -4,26 +4,15 @@ exists() {
xrandr | grep ' connected' | grep "${1}" | wc -l
}
if [ $(exists "HDMI-2") -eq 1 ]; then
printf "one"
xrandr --output LVDS-1 --off --auto
xrandr --output VGA-1 --off --auto
bspc monitor -d I II III IV V VI VII VIII IX X
bspc monitor -g 1680x1050+0+0
exit 0
fi
if [ $(exists "LVDS-1") -eq 1 ]; then
bspc monitor -d I II III IV V VI VII VIII IX X
bspc monitor LVDS-1 -a I II III IV V VI VII VIII IX
exit 0
fi
bspc monitor -d 1 2 3 4 5 6 7 8 9
if [ $(exists "HDMI-2") -eq 1 ] && [ $(exists "LVDS-1") -eq 1 ]; then
printf "two"
xrandr --output HDMI-2 --above LVDS-1 --auto
xrandr --output HDMI-2 --right-of LVDS-1 --auto
xrandr --output VGA-1 --off --auto
bspc monitor LVDS-1 -a I III V VII IX
bspc monitor HDMI-2 -a II IV VI VIII
bspc monitor LVDS-1 -d 1 2 3 4 5 6 7 8 9
bspc monitor HDMI-2 -d 1 2 3 4 5 6 7 8 9
exit 0
fi
# default configuration's fine