├── .github └── workflows │ └── build.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── poetry.lock ├── pyproject.toml ├── screeninfo ├── __init__.py ├── __main__.py ├── common.py ├── enumerators │ ├── __init__.py │ ├── cygwin.py │ ├── drm.py │ ├── osx.py │ ├── py.typed │ ├── windows.py │ ├── xinerama.py │ └── xrandr.py ├── py.typed ├── screeninfo.py └── util.py └── tests ├── __init__.py ├── test_documentation.py └── test_screeninfo.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screeninfo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/__init__.py -------------------------------------------------------------------------------- /screeninfo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/__main__.py -------------------------------------------------------------------------------- /screeninfo/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/common.py -------------------------------------------------------------------------------- /screeninfo/enumerators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/__init__.py -------------------------------------------------------------------------------- /screeninfo/enumerators/cygwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/cygwin.py -------------------------------------------------------------------------------- /screeninfo/enumerators/drm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/drm.py -------------------------------------------------------------------------------- /screeninfo/enumerators/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/osx.py -------------------------------------------------------------------------------- /screeninfo/enumerators/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screeninfo/enumerators/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/windows.py -------------------------------------------------------------------------------- /screeninfo/enumerators/xinerama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/xinerama.py -------------------------------------------------------------------------------- /screeninfo/enumerators/xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/enumerators/xrandr.py -------------------------------------------------------------------------------- /screeninfo/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screeninfo/screeninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/screeninfo.py -------------------------------------------------------------------------------- /screeninfo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/screeninfo/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/tests/test_documentation.py -------------------------------------------------------------------------------- /tests/test_screeninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rr-/screeninfo/HEAD/tests/test_screeninfo.py --------------------------------------------------------------------------------