I've got an Intel HD 4000 video chipset. Since upgrading to 13.10, the black level being sent to my external LCD monitor is too high. Blacks are showing up as gray and colors look washed out in general. I've tried playing with monitor brightness/contrast, but even with them set all the way down, blacks are still not black. Any idea how to adjust this in Kubuntu? It's definitely something in software.
Announcement
Collapse
No announcement yet.
Black level too high after upgrade to 13.10
Collapse
This topic is closed.
X
X
-
Fixed with some help from the never-not-awesome ArchWiki. Apparently this is a regression caused by some changes in the 3.9 kernel. The following xrandr command fixed it for me. Your output name may vary.
To make the change permanent, create a script as root called /etc/lightdm/xrandr.sh with the following contents:Code:xrandr --output HDMI1 --set "Broadcast RGB" "Full"
Then make it executable:Code:#!/bin/bash xrandr --output HDMI1 --set "Broadcast RGB" "Full"
Then tell the display manager (LightDM) to run it on startup by adding the following line to the end of /etc/lightdm/lightdm.conf:Code:sudo chmod +x /etc/lightdm/xrandr.sh
Code:display-setup-script=/etc/lightdm/xrandr.sh
- Top
- Bottom
Users Viewing This Topic
Collapse
There are 0 users viewing this topic.

Comment