https://bugs.kde.org/show_bug.cgi?id=434829

--- Comment #17 from Antonio Orefice <kokok...@gmail.com> ---
Ok, I'm just going to use xrandr and trigger a lut reload.

If anyone needs:

koko@Gozer# cat /koko/scripts/benq.keep.lut.sh 
#!/bin/bash
dispwin -d 1 -s /koko/tmp/1.lut
dispwin -d 2 -s /koko/tmp/2.lut

state_old=$(xrandr |md5sum)

while true ; do 
        sleep 5
        state_new=$(xrandr |md5sum)
        if [ "$state_new" != "$state_old" ] ; then
                echo "Trig"
                sleep 1
                dispwin -d 1 /koko/tmp/1.lut
                dispwin -d 2 /koko/tmp/2.lut
                state_old=$state_new
        fi
done

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to