View Single Post
Old 03-26-2015, 03:15 PM   #26
frostschutz
Linux User
frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.frostschutz ought to be getting tired of karma fortunes by now.
 
frostschutz's Avatar
 
Posts: 2,282
Karma: 6123806
Join Date: Sep 2010
Location: Heidelberg, Germany
Device: none
You run this command:

Code:
cat /dev/input/event1 > /tmp/input.data
Then you tap the screen. Then you break the cat with CTRL-C.

Now that tap is recorded in /tmp/input.data and you can re-play it:

Code:
cat /tmp/input.data > /dev/input/event1
So to start the browser you have to record the home tap (that brings you to the home screen if you were elsewhere), followed by the menu tap, settings tap, beta features tap, web browser tap. Re-played in sequence (with a 1-2 second delay between them) it should get you into the browser.

I used the same technique here https://www.mobileread.com/forums/sho...d.php?t=257511

The page flip is achieved by re-playing a next page tap I previously recorded...

Last edited by frostschutz; 03-26-2015 at 04:48 PM.
frostschutz is offline   Reply With Quote