I'm trying out the extension by Twobob, but (VERY noob here) I can't find the variables that need to be adjusted.
The runner.sh is:
Code:
#!/bin/sh
while :; do SCROLL=0; usleep 85000; OUTY=$(waitforkey | awk '{print substr($0,0,3)}'); if [ "$OUTY" == "191" ] ; then SCROLL=1; fi ;if [ "$OUTY" == "109" ] ; then SCROLL=1; fi ; if [ "$SCROLL" == "1" ] ; then usleep 150000; /mnt/us/extensions/scroller/bin/scroller $1 $2 $3 ; fi ; done
I don't which ones stand for ARG1, ARG2, etc. stated in
https://www.mobileread.com/forums/sho...2&postcount=31
My problem is similar to Salah's, but I need to move my screen up (the bottom part of my Kindle is broken).