Skip to content

Instantly share code, notes, and snippets.

@tobias
Created January 7, 2015 21:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobias/f85d46b26432e414eeac to your computer and use it in GitHub Desktop.
Save tobias/f85d46b26432e414eeac to your computer and use it in GitHub Desktop.
#!/bin/bash
IN="LVDS1"
EXT="HDMI3"
if (xrandr | grep "$EXT disconnected"); then
xrandr -d :0.0 --output $IN --auto --output $EXT --off
else
xrandr -d :0.0 --output $IN --auto --output $EXT --auto --right-of $IN --primary
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment