voidrice/.scripts/i3cmds/displayselect

50 lines
2.3 KiB
Text
Raw Normal View History

2018-04-07 06:22:10 +00:00
#!/bin/sh
2018-09-17 19:46:44 +00:00
# A UI for detecting and selecting all displays.
# Probes xrandr for connected displays and lets user select one to use.
# User may also select "manual selection" which opens arandr.
# I plan on adding a routine from multi-monitor setups later.
2018-04-07 06:22:10 +00:00
2018-09-17 19:46:44 +00:00
twoscreen() { # If multi-monitor is selected and there are two screens.
2018-11-02 00:50:40 +00:00
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
2018-09-17 19:46:44 +00:00
secondary=$(echo "$screens" | grep -v "$primary")
direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?")
xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto
}
morescreen() { # If multi-monitor is selected and there are more than two screens.
2018-12-20 19:24:50 +00:00
primary=$(echo "$screens" | dmenu -i -p "Select primary display:")
2018-09-17 19:46:44 +00:00
secondary=$(echo "$screens" | grep -v "$primary" | dmenu -i -p "Select secondary display:")
direction=$(printf "left\\nright" | dmenu -i -p "What side of $primary should $secondary be on?")
tertiary=$(echo "$screens" | grep -v "$primary" | grep -v "$secondary" | dmenu -i -p "Select third display:")
xrandr --output "$primary" --auto --output "$secondary" --"$direction"-of "$primary" --auto --output "$tertiary" --"$(printf "left\\nright" | grep -v "$direction")"-of "$primary" --auto
}
multimon() { # Multi-monitor handler.
case "$(echo "$screens" | wc -l)" in
2018-11-03 21:59:31 +00:00
1) xrandr $(echo "$allposs" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;;
2018-09-17 19:46:44 +00:00
2) twoscreen ;;
*) morescreen ;;
esac ;}
# Get all possible displays
allposs=$(xrandr -q | grep "connected")
# Get all connected screens.
screens=$(echo "$allposs" | grep " connected" | awk '{print $1}')
# Get user choice including multi-monitor and manual selection:
chosen=$(printf "%s\\nmulti-monitor\\nmanual selection" "$screens" | dmenu -i -p "Select display arangement:") &&
2018-04-07 06:22:10 +00:00
case "$chosen" in
2018-09-17 19:46:44 +00:00
"manual selection") arandr ; exit ;;
"multi-monitor") multimon ;;
*) xrandr --output "$chosen" --auto $(echo "$screens" | grep -v "$chosen" | awk '{print "--output", $1, "--off"}' | tr '\n' ' ') ;;
2018-04-07 06:22:10 +00:00
esac
2018-09-17 19:46:44 +00:00
# Fix feh background if screen size/arangement has changed.
feh --bg-scale "$HOME/.config/wall.png"
2018-09-24 15:19:50 +00:00
# Re-remap keys if keyboard added (for laptop bases)
remaps
2018-12-18 17:53:34 +00:00
# Restart dunst to ensure proper location on screen
pgrep -x dunst >/dev/null && killall dunst && setsid dunst &