Package Details: ddcci-driver-linux-dkms 0.4.5-1

Git Clone URL: https://aur.archlinux.org/ddcci-driver-linux-dkms.git (read-only, click to copy)
Package Base: ddcci-driver-linux-dkms
Description: A pair of Linux kernel drivers for DDC/CI monitors (DKMS)
Upstream URL: https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/
Keywords: backlight hdmi monitor
Licenses: GPL2
Conflicts: ddcci-driver-linux
Submitter: irtimmer
Maintainer: ewout (Porous3247)
Last Packager: Porous3247
Votes: 34
Popularity: 0.007751
First Submitted: 2017-04-15 18:51 (UTC)
Last Updated: 2024-07-24 04:30 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6

Andrei_Korshikov commented on 2021-04-03 06:06 (UTC) (edited on 2021-04-03 06:06 (UTC) by Andrei_Korshikov)

Hi jiri.one, thanks for the info. From that reddit thread,

PowerDevil cannot deal with more than one brightness source,

so

while both of the monitors change their brightness value on the same scale (from 0 to 100), the effective brightness is different because the two have different backlight illumination at the same value.

For example, my brightness values usually are 65 for laptop screen and 40 for external monitor. As far as I understand I can't independently manage brightness values for different monitors without this dkms. I would be glad if I'm wrong.

And, without this dkms there is no backlight device in /sys/class/backlight for my external monitor.

jiri.one commented on 2021-03-30 10:38 (UTC) (edited on 2021-03-30 10:40 (UTC) by jiri.one)

This dkms is no more needed, because now is powerdevil compiled with

-DHAVE_DDCUTIL=On

But still is needed to have i2c_dev loaded before sddm, so the systemd unit, which I am using is:

[Unit]
After=multi-user.target
Before=sddm.service

[Service]
Type=oneshot
ExecStart=/usr/bin/modprobe i2c_dev
ExecStop=/usr/bin/modprobe --remove i2c_dev
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target

More info is here: https://www.reddit.com/r/kde/comments/epgs13/kde_my_journey_to_get_a_brighness_slider_for_my/

jiri.one commented on 2020-09-11 12:20 (UTC)

Andrej.Korshikov thanks a lot for your comment, it really helped me.

Andrei_Korshikov commented on 2020-06-20 04:08 (UTC)

/etc/systemd/system/ddcci-backlight.service:

# Placing "ddcci_backlight" into /etc/modules-load.d
# leads to hang on boot with external (HDMI) monitor
# connected to the laptop, so we need to add the module later.

# And ddcci_backlight can't detect monitor during sddm.service startup.

[Unit]
After=multi-user.target
Before=sddm.service

[Service]
Type=oneshot
ExecStart=/usr/bin/modprobe ddcci_backlight
ExecStop=/usr/bin/modprobe --remove ddcci_backlight
RemainAfterExit=yes

[Install]
WantedBy=multi-user.target

repsac commented on 2019-12-26 04:57 (UTC)

@Chrissss What if you have a linux-lts kernel?

dkms already has an optional dependency on all the kernels in the repository.

Chrissss commented on 2019-12-26 00:15 (UTC)

I think the linux-headers should be a dependecy. Without them I get the following error, when installing the PKGBUILD:

[...]
(2/3) Install DKMS modules
==> Unable to install module ddcci/0.3.3 for kernel *: Missing kernel headers.
(3/3) Removing old cached pacakges...
[...]

After running pacman -S linux-headers the module gets built and installed successfully.

mickael9 commented on 2018-01-12 22:06 (UTC)

Would you consider including my patch: https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/merge_requests/3 (raw diff: https://gitlab.com/mickael9/ddcci-driver-linux/commit/a05b4ec96328fda73aa4177f561dc69872061822.diff) ?