Since my current laptop sports an Intel graphics chipset, one of the things I've been able to fully take advantage of is xrandr, which essentially lets you change your xorg configuration on the fly. This is great because it's very simple to use, doesn't require root access, and lets you make changes without restarting your X server (something extremely handy when you move around a lot).
There are a few programs that provide a GUI for xrandr, but from my experiences with them, they all seem to be buggy or hard to use. This lack of a simple way to control your external monitor led me to create my own: by adding a drawer and a few custom application launchers to your gnome panel, you can create a simple and fast way to manipulate your screen(s).
Here are the shortcuts that I use:
- "External Monitor to the Left"
xrandr --output VGA --auto --left-of LVDS - "External Monitor to the Right"
xrandr --output VGA --auto --right-of LVDS - "Clone Main Screen"
xrandr --output VGA --auto --same-as LVDS - "No External Monitor"
xrandr --output VGA --off