a script to apply calibration data based on teh xkb one we use:
cat ../hal-setup-touchscreen 
#!/bin/sh
#
# borrowed from Fedora and modified to apply touchscreen calibration data
#

[ -x /usr/bin/hal-set-property ] || exit 0

. /etc/default/evtouch > /dev/null 2>&1 || exit 0

hal_set () {
    if [ -n "$2" ]; then
        /usr/bin/hal-set-property --direct --udi "$UDI" --key 
input.x11_options.$1 --string "$2"
    else
        /usr/bin/hal-set-property --direct --udi "$UDI" --key 
input.x11_options.$1 --remove
    fi
}

hal_set minx $MINX
hal_set miny $MINY
hal_set maxx $MAXX
hal_set maxy $MAXY
hal_set movelimit $MOVELIMIT

-- 
make evtouch devices work with hal-input in intrepid
https://bugs.launchpad.net/bugs/261873
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to