We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firstly thanks for a very useful tool!
I'm seeing some problems when applying profiles on my laptop though, getting this error: xrandr: Configure crtc 1 failed
xrandr: Configure crtc 1 failed
Debugging it, it happens when the refresh rate is set to 60, but not when using 59.95 as reported by xrandr.
Looking into the python code, I see it is internally rounded before writing to profiles etc in xrandr.py: current_rate = int(round(float(rate)))
current_rate = int(round(float(rate)))
Changing it to just current_rate = rate resolved the problem for me.
current_rate = rate
The text was updated successfully, but these errors were encountered:
1407ad7
No branches or pull requests
Firstly thanks for a very useful tool!
I'm seeing some problems when applying profiles on my laptop though, getting this error:
xrandr: Configure crtc 1 failed
Debugging it, it happens when the refresh rate is set to 60, but not when using 59.95 as reported by xrandr.
Looking into the python code, I see it is internally rounded before writing to profiles etc in xrandr.py:
current_rate = int(round(float(rate)))
Changing it to just
current_rate = rate
resolved the problem for me.The text was updated successfully, but these errors were encountered: