#!/bin/sh
#wait 30 seconds before executing commands sleep 30
#restrict tablet to right monitor..... #using id # from xinput list i couldnt figure out how to make a smooth way of figuring out which one it was so i changed settings for all three #the id seams to change on reboot
xinput set-prop "11" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1 xinput set-prop "12" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1 xinput set-prop "13" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1
#just a test echo to file to see if shes running echo 'TEST' > /home/surgy/Documents/scripts/testfile
#!/bin/sh #wait 30 seconds before executing commands sleep 30 #restrict tablet to right monitor..... #using id # from xinput list i couldnt figure out how to make a smooth way of figuring out which one it was so i changed settings for all three #the id seams to change on reboot xinput set-prop "11" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1 xinput set-prop "12" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1 xinput set-prop "13" --type=float "Coordinate Transformation Matrix" 0.5530726257 0 0.448273743 0 1 0 0 0 1 #just a test echo to file to see if shes running echo 'TEST' > /home/surgy/Documents/scripts/testfile
|