2

while exploring different possibilities of my monitor with different resolutions I have been using xrandr. I wish to know what one of the outputted data of xrandr means.

In the following example I would like to know what the final data set means (the part stating 890mm x 500mm)

HDMI1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 890mm x 500mm

What are these Dimensions specifically, and are these parameters changeable?

Kalamalka Kid
  • 3,224
  • 11
  • 33
  • 65

1 Answers1

2

What it means

In the line:

HDMI1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 890mm x 500mm

indeed, the last section: 890mm x 500mm gives you the size of your screen x/y in mm

Why the difference?

In this question, we ran into the same issue. The explanation is that by default, the screen is "assumed" to be at 96dpi, which is not necessarily the case. If the screen is on, the value is set form the "real" resolution (pixels/inch), which is obviously slightly different on your screen.

this bug is related to the issue; you would probably get the same difference when getting the screen info via xdpyinfo. Note that the xrandrsize with screen on is the correct size.

Obviously, you cannot change these values.

Jacob Vlijm
  • 83,767
  • 1
    @KalamalkaKid I tend to think not, since it is purely a "virrtual", informational rendering of the size. On the other hand, do you have a (set of) screenshots (before/after)? It would be interesting to measure if the changes are of the same ratio. – Jacob Vlijm Apr 29 '16 at 05:00
  • ok I was thinking the same thing, so I updated my answer on the other post, (included some more information about some buggy behavior), and also included the screenshots https://askubuntu.com/questions/742897/chrome-resolution-changes-when-monitor-is-turned-off – Kalamalka Kid Apr 29 '16 at 06:14