An open API service indexing awesome lists of open source software.

https://github.com/ext/xorg_query

Python module to query xorg for information about displays, screens, resolutions etc.
https://github.com/ext/xorg_query

Last synced: about 1 month ago
JSON representation

Python module to query xorg for information about displays, screens, resolutions etc.

Awesome Lists containing this project

README

          

Python module to query xorg for information about displays, screens, resolutions etc.

>>> import xorg_query
>>> xorg_query.screens()
[':0.0', ':0.1']
>>> xorg_query.current_resolution()
(1280, 1024)
>>> xorg_query.current_resolution(':0.1')
(1920, 1080)

etc.