Paste Code
Paste Blends
Paste Images
#!/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
  1. #!/bin/sh
  2.  
  3. #wait 30 seconds before executing commands
  4. sleep 30
  5.  
  6. #restrict tablet to right monitor.....
  7. #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
  8. #the id seams to change on reboot
  9.  
  10. xinput set-prop "11" --type=float "Coordinate Transformation Matrix"  0.5530726257 0 0.448273743 0 1 0 0 0 1
  11. xinput set-prop "12" --type=float "Coordinate Transformation Matrix"  0.5530726257 0 0.448273743 0 1 0 0 0 1
  12. xinput set-prop "13" --type=float "Coordinate Transformation Matrix"  0.5530726257 0 0.448273743 0 1 0 0 0 1
  13.  
  14. #just a test echo to file to see if shes running
  15. echo 'TEST' > /home/surgy/Documents/scripts/testfile
go to heaven