2013-07-10 07:10:38 +00:00
|
|
|
#!/bin/sh
|
|
|
|
export LC_ALL="en_US.UTF-8"
|
|
|
|
|
|
|
|
# we're always starting from our working directory
|
|
|
|
cd /mnt/onboard/.kobo/koreader/
|
|
|
|
|
|
|
|
# export trained OCR data directory
|
|
|
|
export TESSDATA_PREFIX="data"
|
|
|
|
|
|
|
|
# export dict directory
|
|
|
|
export STARDICT_DATA_DIR="data/dict"
|
|
|
|
|
2014-06-22 08:51:06 +00:00
|
|
|
# exit from nickel
|
2014-07-03 18:18:01 +00:00
|
|
|
killall nickel hindenburg fmon
|
2014-06-25 13:31:42 +00:00
|
|
|
|
2014-06-22 08:51:06 +00:00
|
|
|
# finally call the launcher
|
2013-08-06 10:03:10 +00:00
|
|
|
./reader.lua /mnt/onboard 2> crash.log
|
2013-07-10 07:10:38 +00:00
|
|
|
|
2014-07-03 11:40:53 +00:00
|
|
|
# back to nickel
|
|
|
|
./nickel.sh
|