Skip to content

Instantly share code, notes, and snippets.

@Sopamo
Created May 22, 2016 13:06
Show Gist options
  • Save Sopamo/a1b5336103020d57c7c28ce35040929f to your computer and use it in GitHub Desktop.
Save Sopamo/a1b5336103020d57c7c28ce35040929f to your computer and use it in GitHub Desktop.
Send tap events from your keyboard to your android device. Execute the file, press any key to submit a tap event. Great for Google Cardboard. Tested on Mac. You need to have adb installed and the device connected.
#!/bin/bash
while true; do
read -rsn1 input
adb shell input tap 200 200
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment