#!/bin/bash

echo "TouchCalSave run"

filename=$(ls /tmp/ | grep calibration.conf)

if [ ${filename} ];then
	cp /tmp/${filename} /usr/share/X11/xorg.conf.d/
else
	echo "no file!"
fi


