You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
205 B

  1. #!/bin/bash
  2. intern=LVDS-1
  3. extern=VGA-1
  4. if xrandr | grep "$extern connected"; then
  5. xrandr --output ${extern} --auto --right-of ${intern}
  6. else
  7. xrandr --output ${extern} --off --output ${intern} --auto
  8. fi