Hi, I have just received my kindle 3 and am new to the e-book experience but not new to linux. I have installed the jailbreak, usbnetwork, luigi's terminal, and this most recent 0805 duokan lite.
what bothers me is the transition speed between kindle and duokan with the launchpad keystrokes that I have found online. They all seem to take way too much time to switch between the two, because they rely on killing the previous and starting from scratch every time you switch. so I try something like this:
Quote:
Originally Posted by startdk.sh
Code:
#!/bin/sh
dk=$(ps -e | grep -c 'KindleApp')
if test $dk -gt 0
then
killall -CONT KindleApp
else
mntroot rw
/test/DKLite/KindleApp >/dev/null 2>/dev/null &
fi
killall -STOP cvm
|
Quote:
Originally Posted by stopdk.sh
Code:
#!/bin/sh
killall -STOP KindleApp
killall -CONT cvm
|
and it works, switching is instantaneous, except for when I actually try to read an ebook on duokan, the display freezes and the duokan process dies. I suspect when I launch it this way I am missing something important in the normal duokan startup process. Any ideas?