2018-04-07 06:22:10 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-09-16 17:55:23 +00:00
|
|
|
chosen=$(printf "laptop\\nlaptopdual\\nVGA\\nHDMI\\nManual selection" | dmenu -i)
|
2018-04-07 06:22:10 +00:00
|
|
|
|
|
|
|
case "$chosen" in
|
|
|
|
laptopdual) xrandr --output LVDS-1 --auto --output VGA-1 --auto --right-of LVDS-1 ;;
|
|
|
|
laptop) xrandr --output LVDS-1 --auto --output VGA-1 --off ;;
|
|
|
|
VGA) xrandr --output VGA-1 --auto --output LVDS-1 --off ;;
|
|
|
|
HDMI) xrandr --output HDMI-1 --auto --output LVDS-1 --off ;;
|
|
|
|
"Manual selection") arandr ;;
|
|
|
|
esac
|
|
|
|
|
2018-04-09 19:32:32 +00:00
|
|
|
# Relaunch polybar if there was a selection.
|
2018-09-16 17:55:23 +00:00
|
|
|
[ "$chosen" = "" ] || polybar_launch
|