* xinput is used when we want to make the changes permanent (xinput is
called with every Xorg start
* xinput_calibrator_once.sh can be used from Xsession.d
* calibration data are stored in /etc/pointercal.xinput
* whole log from last run in /etc/pointercal.xinput.log
* script needs tee and sed (busybox variants are enough)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
--- /dev/null
+#!/bin/sh
+if [ -e /etc/pointercal.xinput ] ; then
+ echo Using calibration data stored in /etc/pointercal.xinput
+ . /etc/pointercal.xinput
+else
+ CAL=`/usr/bin/xinput_calibrator | tee /etc/pointercal.xinput.log | grep xinput| sed 's/^ //g; s/$/;/g'`
+ if [ ! -z "$CAL" ] ; then
+ echo $CAL > /etc/pointercal.xinput
+ echo Calibration data stored in /etc/pointercal.xinput
+ fi
+fi
DEPENDS = "virtual/libx11 libxi"
+RDEPENDS = "xinput"
SRCREV = "1c715824334c5d33085dba02f195c9720c2883b5"
SRC_URI = "git://github.com/tias/xinput_calibrator.git;protocol=git \
file://xinput-calibrator.desktop \
+ file://xinput_calibrator_once.sh \
"
-PR = "r3"
+PR = "r4"
inherit autotools
S = "${WORKDIR}/git/"
do_install() {
install -d ${D}${bindir}
install -m 0755 src/xinput_calibrator_x11 ${D}${bindir}/xinput_calibrator
+ install -m 0755 ${WORKDIR}/xinput_calibrator_once.sh ${D}${bindir}/xinput_calibrator_once.sh
install -d ${D}${datadir}/applications/
install -m 0755 ${WORKDIR}/xinput-calibrator.desktop ${D}${datadir}/applications/xinput-calibrator.desktop
}