How do I align the bottom edges of two monitors with xrandr?

22

9

I have two outputs that I'd like to use on my laptop:

  • LVDS1 – 1366×768
  • HDMI1 – 1920×1080

I set my monitors up like so:

xrandr --output LVDS1 --auto --output HDMI1 --auto --right-of LVDS1

This is all well and good, but my laptop sits considerably lower than my external monitor, and with the top edges of the screens being aligned, it makes the jump from one screen to the other rather unintuitive. Is there a way I can align the bottom edges instead? I thought I could use the --pos flag to do this, but I have tried and not seen any difference (perhaps I do not know how to use it properly).

elynnaie

Posted 2012-10-08T18:43:08.947

Reputation: 825

Answers

38

 xrandr --output LVDS1 --auto --pos 0x312 --output HDMI1 --auto --pos 1366x0

Basically, --pos specifies the position of the upper left corner of the screen in the virtual screen space. The virtual screen is a screen that spans your entire physical screens. This is a very generic way of specifying screen positions.

You want this configuration:

(virtual screen coordinates)
     0       1366                 1366+1920

   0           A-----------------------
               |                      |
               |                      |
               |                      |
  x? B---------|         HDMI         |
     |         |                      |
     |  LVDS   |       1920x1080      |
     |1366x768 |                      |
1080 ----------------------------------

And you need the coordinates of A and B to use in the --pos option. x is easily solved as 1080 - 768 = 312, so A is at (1366,0) and B is at (0,312).

Therefore, the appropriate --pos options are --pos 1366x0 for HDMI and --pos 0,312 for LVDS. You don't have to specify the virtual screen size (anymore), it is resized automatically.

Note that --pos can be abused, for exemple to create a hole between your two screens, or create overlapping. Most (all?) WM will not be able to handle that through.

EDIT: oh, you want the other way around, fixed that.

BatchyX

Posted 2012-10-08T18:43:08.947

Reputation: 1 836

2Is there no way to do it within xrandr without using magic values? I'd like to have a script that works regardless of the resolution of the screen I plug in. If not I guess I could extract the values from xrandr's output, but that sounds a little tedious… – Khaur – 2014-07-24T11:57:50.820

Heh, figured this out right before you posted. Would you be able to explain how the --pos flag works? – elynnaie – 2012-10-08T20:11:39.020

Thanks, this makes a lot of sense! I think you want to replace 1600 with 1080 in your example, though. – elynnaie – 2012-10-09T07:37:19.173

@denaje: Fixed. – BatchyX – 2012-10-09T17:50:30.937

6

In addition to @BatchyX's excellent answer, an alternative —and IMO more convenient— option could be using ARandR (which stands for "Another XRandR GUI"):

ARandR is designed to provide a simple visual front end for XRandR. Relative monitor positions are shown graphically and can be changed in a drag-and-drop way.

You might need to install it first, but it's available in most distros' repositories. Here's how it looks for me on LXDE, for a setup with one external monitor connected via VGA, above, and the native (netbook-size) monitor underneath it:

ARandR screenshot

waldyrious

Posted 2012-10-08T18:43:08.947

Reputation: 252

3

If you looking for a drag-and-drop GUI-based solution, I can recommend ARandR.

It allows you to set the most important XRandR settings, e.g. screen position and resolution, which then can be saved in form of a shell script that calls xrandr with the corresponding parameters.

Florian Franzen

Posted 2012-10-08T18:43:08.947

Reputation: 56

2

Someone managed ... hope this helps?

Dual Screens with aligned bottom edges

tink

Posted 2012-10-08T18:43:08.947

Reputation: 1 419