-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
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
Fix issue 149 crtc not found by initialising all displays first #178
base: master
Are you sure you want to change the base?
Fix issue 149 crtc not found by initialising all displays first #178
Conversation
Signed-off-by: martin f. krafft <[email protected]>
This patch causes `autorandr` to call `xrandr --auto` before making other changes. This has no discernable side-effects, but it seems to fix [issues where `xrandr` would report an error](phillipberndt#149) like ``` cannot find crtc for output HDMI-1 ``` Closes: phillipberndt#149 Signed-off-by: martin f. krafft <[email protected]>
There's use cases where people don't want to switch on disabled outputs, and for them this creates flickering. That makes this an undesired solution, unfortunately. I personally worked around this in my setup using the |
Curious: What happens if you only enable the output that didn't work using |
Is that what I'll try the other suggestions when I get back to the workplace and have a bit of time. |
FYI:
|
This patch causes
autorandr
to callxrandr --auto
before makingother changes. This has no discernable side-effects, but it seems to fix
issues where
xrandr
would report anerror like
Closes: #149