Hi,
I'm having trouble getting my video settings to save completely on my installation of Libreelec 8.0.1 on a Intel Nuc D54250WYK(Intel HD Graphics 5000).
Everytime I reboot the computer, the output changes from 1080p@60hz(settings in System->Display) to native 4k@24hz. It also changes my settings in xrandr to full range, despite me changing it to "Limited 16:235" before. The effect is that my white and black levels are completely crushed.
Every other setting in Libreelec is saved properly and does not change after reboot.
How can I make my video settings stick?
/Bokai
[hr]
[hr]
EDIT: I managed to solve it by creating an autostart.sh script that alters the video config after every reboot. I still don't get why these settings can't be changed in the Libreelec interface to begin with.
For other people having the same problem, this was my solution:
edit /storage/.config/autostart.sh
with the following:
(
sleep 10
xrandr --output HDMI1 --set "Broadcast RGB" "Limited 16:235" --mode 1920x1080 --rate 60.00
)&
Sleep was necessary or otherwise the script would execute before video was initialized and my settings would be overwritten by Libreelec.
Then change permissions of the script: