MaxVerevkin / wl-gammarelay-rs

A simple program that provides DBus interface to control display temperature and brightness under wayland without flickering
GNU General Public License v3.0
110 stars 2 forks source link

Separate settings per screen #3

Closed dhasial closed 6 months ago

dhasial commented 2 years ago

Is it currently possible to have different settings (colour temp/brightness) per each individual screen?

MaxVerevkin commented 2 years ago

The protocol allows for this, but it is not currently implemented.

You can see how current implementation just iterates over all displays and sets the temperature for each on these lines: https://github.com/MaxVerevkin/wl-gammarelay-rs/blob/86234713e262e5afba1c6bead3bbe14bcae5165c/src/wayland.rs#L100-L122

I would happily accept a PR which implements per-output settings.