getting info about attached displays

P

Phil Smy

Hi,
I have a ruby daemon process that needs to get info about the monitors
attached to the machine it is running on. Does anyone have any nice
x-platform way of doing this? Barring that, how about some Windows
calls?

Thanks!
 
K

Kyle Schmitt

Hi,
I have a ruby daemon process that needs to get info about the monitors
attached to the machine it is running on. Does anyone have any nice
x-platform way of doing this? Barring that, how about some Windows
calls?

Thanks!
Phil, that's really more of a general unix (or DOS in the case of
windows) question.

Still, for real OSes running X, xdpyinfo is a utility that provides
tons of info, including the number of attached screens...

irb>%x[xdpyinfo][/number of screens: +[0-9]+/]
=> "number of screens: 1"

I'd suggest just running it into less, so you can get acquainted with
it's output. The man page sadly doesn't point you to useful C calls,
but the source should be decently documented if you want to grab it
from x.org or xfree86.org.

--Kyle
 
P

Phil Smy

Kyle said:
Hi,
I have a ruby daemon process that needs to get info about the monitors
attached to the machine it is running on. Does anyone have any nice
x-platform way of doing this? Barring that, how about some Windows
calls?

Thanks!
Phil, that's really more of a general unix (or DOS in the case of
windows) question.

Still, for real OSes running X, xdpyinfo is a utility that provides
tons of info, including the number of attached screens...

irb>%x[xdpyinfo][/number of screens: +[0-9]+/]
=> "number of screens: 1"

I'd suggest just running it into less, so you can get acquainted with
it's output. The man page sadly doesn't point you to useful C calls,
but the source should be decently documented if you want to grab it
from x.org or xfree86.org.

--Kyle

Thanks Kyle,
Yes... I realise now that it is more OS based (though I still can't find
the windows command for it!).

The problem with xdpyinfo is that number of screens is actually NOT the
number of displays. I have 2 monitors attached and I get the answer of
1, because I have one virtual desktop spanning the two.

Anyway... off topic!

Thanks again
 
K

Kyle Schmitt

Phil, there are two ways you can have two monitors being a virtual
display, the driver may take care of it (like the nvidia one, and I
have no way of knowing how to detect that), or it may be through
xinerama. If it's through xinerama, you should be able to tell what
the geometries and positions of the component screens are, even if you
use it as one huge screen.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,797
Messages
2,569,647
Members
45,377
Latest member
Zebacus

Latest Threads

Top