|
|
|
@ -5,13 +5,13 @@ OPTIONS="Laptop\nHDMI\nVGA\nDual (Laptop main + HDMI)\nDual (HDMI main + laptop)
|
|
|
|
|
SELECTED=$(echo -e $OPTIONS | rofi -dmenu -i -p "xrandr")
|
|
|
|
|
|
|
|
|
|
case "$SELECTED" in
|
|
|
|
|
Laptop) xrandr --output eDP1 --auto --output HDMI2 --off --output DP1 --off;;
|
|
|
|
|
HDMI) xrandr --output HDMI2 --auto --output eDP1 --off --output DP1 --off;;
|
|
|
|
|
VGA) xrandr --output DP1 --auto --output HDMI2 --off --output eDP1 --off;;
|
|
|
|
|
"Dual (Laptop main + HDMI)") xrandr --output eDP1 --primary --auto --output HDMI2 --auto --right-of eDP1 --output "DP1" --off;;
|
|
|
|
|
"Dual (Laptop main + VGA)") xrandr --output eDP1 --primary --auto --output DP1 --auto --right-of eDP1 --output HDMI2 --off;;
|
|
|
|
|
"Dual (HDMI main + laptop)") xrandr --output eDP1 --auto --output DP1 --off --output HDMI2 --auto --primary --left-of eDP1;;
|
|
|
|
|
"Dual (VGA main + laptop)") xrandr --output eDP1 --auto --output DP1 --auto --primary --left-of eDP1;;
|
|
|
|
|
Laptop) xrandr --output eDP-1 --auto --output HDMI-2 --off --output DP-1 --off;;
|
|
|
|
|
HDMI) xrandr --output HDMI-2 --auto --output eDP-1 --off --output DP-1 --off;;
|
|
|
|
|
VGA) xrandr --output DP-1 --auto --output HDMI-2 --off --output eDP-1 --off;;
|
|
|
|
|
"Dual (Laptop main + HDMI)") xrandr --output eDP-1 --primary --auto --output HDMI-2 --auto --right-of eDP-1 --output "DP-1" --off;;
|
|
|
|
|
"Dual (Laptop main + VGA)") xrandr --output eDP-1 --primary --auto --output DP-1 --auto --right-of eDP-1 --output HDMI-2 --off;;
|
|
|
|
|
"Dual (HDMI main + laptop)") xrandr --output eDP-1 --auto --output DP-1 --off --output HDMI-2 --auto --primary --left-of eDP-1;;
|
|
|
|
|
"Dual (VGA main + laptop)") xrandr --output eDP-1 --auto --output DP-1 --auto --primary --left-of eDP-1;;
|
|
|
|
|
Manual) arandr;;
|
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
|