From 29358b8d15ec1ddd8d2c11e2f2f6964ec49edc52 Mon Sep 17 00:00:00 2001 From: benj Date: Mon, 9 Sep 2019 15:22:07 -0700 Subject: basic i3 setup --- scripts/format_displays.sh | 83 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100755 scripts/format_displays.sh (limited to 'scripts/format_displays.sh') diff --git a/scripts/format_displays.sh b/scripts/format_displays.sh new file mode 100755 index 0000000..acb2638 --- /dev/null +++ b/scripts/format_displays.sh @@ -0,0 +1,83 @@ +#!/usr/bin/env bash + +# get the displays which are connected and setup an associative array +DISPLAYS=( $(xrandr | grep " connected" | awk '{print $1}') ) +declare -A DISP_RES + +BG_IMG="~/.setup/des/i3/assets/wallpaper/yosemite_color_block.png" + +VERBOSE="" +if_echo () { + if [ -n "$VERBOSE" ]; then + echo $1 + fi +} + +while getopts ":h" opt; do + case ${opt} in + h ) VERBOSE="on" + ;; + \? ) echo "read the script for help; -v for verbose logging" + ;; + esac +done + +for (( i=0; i <${#DISPLAYS[@]}; i++ )); do + # store the assocated resolutions + DISPLAY_NAME=${DISPLAYS[i]} + DISP_RES["$DISPLAY_NAME"]=$(xrandr | grep "^$DISPLAY_NAME" -A 1 | tail -n 1 | awk '{print $1}') +done + +# We setup a consistent monitor ordering as follows... +# ----- ----- ------ ------ +# | DP-1 | | DP-2 | | HDMI-1 | | HDMI-2 | +# ----- ----- ------ ------ +# \ \ / / +# \ | | / +# \ ----- / +# \ | eDP-1 |----/ +# _____ + +EDP_1=${DISP_RES["eDP-1"]} +DP_1=${DISP_RES["DP-1"]} +DP_2=${DISP_RES["DP-2"]} +HDMI_1=${DISP_RES["HDMI-1"]} + +if [ -n "$EDP_1" ]; then + # if no other displays are set, then we bring all windows into eDP-1 + if [[ -z "$DP_1" && -z "$DP_2" && -z "$HDMI_1" ]]; then + if_echo "No displays detected. Resetting primary display (eDP-1)" + xrandr --auto + else + if_echo "Found other displays, and explicitly setting primary display (eDP-1)" + xrandr --output eDP-1 --mode "$EDP_1" + fi +fi + +if [ -n "$DP_1" ]; then + if_echo "Found DP-1. Setting DP-1 above primary display (eDP-1)" + xrandr --output DP-1 --mode "$DP_1" --above eDP-1 +fi + +if [[ -n "$DP_2" && -n "$DP_1" ]]; then + if_echo "Found DP-2. Setting DP-2 right of DP-1" + xrandr --output DP-2 --mode "$DP_2" --right-of DP-1 +elif [[ -n "$DP_2" ]]; then + if_echo "Found DP-2 but not DP-1. Setting DP-2 above primary display (eDP-1)" + xrandr --output DP-2 --mode "$DP_2" --above eDP-1 +fi + +if [[ -n "$HDMI_1" && -n "$DP_2" && "$DP_1" ]]; then + if_echo "Found HDMI-1. Setting it right of DP-2" + xrandr --output HDMI-1 --mode "$HDMI_1" --right-of DP-2 +elif [[ -n "$HDMI_1" && ( "$DP_2" || "$DP_1" ) ]]; then + if [ -n "$DP_2" ]; then + if_echo "Found HDMI-1 and DP-2 but not DP-1. Setting HDMI-1 right of DP-2" + xrandr --output HDMI-1 --mode "$HDMI_1" --right-of DP-2 + else + if_echo "Found HDMI-1 and DP-1 but not DP-2. Setting HDMI-1 right of DP-1" + xrandr --output HDMI-1 --mode "$HDMI_1" --right-of DP-1 + fi +fi + +feh bg-fill "$IMG" -- cgit v1.2.3