19

So... I have two monitors on my Ubuntu machine. And every time I launch some Windows OpenGL application under Wine it turns off the second monitor. And leaves it turned off when the application exits. I wonder, is there a shell command which will instantly turn the second monitor on?

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
Aleksandr Kravets
  • 323
  • 1
  • 3
  • 10

2 Answers2

24

The xrandr command is the one you are looking for. An example usage is:

xrandr --output HDMI1 --auto --same-as LVDS1

You can have --left-of, --right-of. Run xrandr on its own to see the different outputs that are available.

Graeme
  • 33,607
  • 8
  • 85
  • 110
2

Use xrandr command without args for view your output names and the supported resolutions.

Once you have this informations, you can setup a screen like this (this is an example, there is a lot of others options):

**xrandr --output <output> --mode <resolution> --right-of/--left-of <output>**

You can also just reactivate your screen with:

**xrandr --output <output> --auto**
openghost
  • 21
  • 1