This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
Show and adjust display parameters on a Dell U2713HM monitor | |
Requirements: | |
- mentioned monitor (27' should also work) with DDC/CI setting on | |
- Windows Vista+ (dxva2.dll) | |
- Python 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from random import uniform | |
import time | |
import threading | |
from itertools import count, islice | |
from vendor.Qt.Qt import QtCore, QtGui, QtWidgets | |
from vendor.Qt.Qt.QtWidgets import ( | |
QApplication, | |
QLabel, |