Skip to content

Instantly share code, notes, and snippets.

@agriffis
Created March 26, 2012 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agriffis/2206093 to your computer and use it in GitHub Desktop.
Save agriffis/2206093 to your computer and use it in GitHub Desktop.
sitdown (or standup)
#!/bin/bash
hdmi=HDMI-1
dvi=DVI-D-1
case /$0 in
*/sitdown) xrandr --output $hdmi --auto ; xrandr --output $dvi --off ;;
*/standup) xrandr --output $dvi --auto ; xrandr --output $hdmi --off ;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment