Thread: Odds and ends
View Single Post
Posts: 2,802 | Thanked: 4,491 times | Joined on Nov 2007
#178
Originally Posted by maacruz View Post
Instead of sending a stream of fast key pressings, try to send the keydown event, wait a bit, and then the keyup event. May be that works
Code:
xte 'keydown F3'
/usr/share/snx/usleep 100000
xte 'keyup F3'
xte actually contains sleep/usleep commands as well, so the above could be streamlined into one process:

Code:
xte  'keydown F3' 'usleep 100000' 'keyup F3'
No idea why something like that would crash the tablet though :-(
 

The Following 2 Users Say Thank You to lma For This Useful Post: