2
0
mirror of https://github.com/koreader/koreader synced 2024-11-13 19:11:25 +00:00
koreader/koreader_kobo.sh
Giorgio Micotti 8d8e85e0fb Fix bug #448.
2014-02-09 22:10:29 +01:00

26 lines
555 B
Bash

#!/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"
# stop Nickel
killall -STOP nickel
# store the content of the framebuffer
dd if=/dev/fb0 of=.last_screen_content
# finally call reader
./reader.lua /mnt/onboard 2> crash.log
# continue with nickel
cat .last_screen_content | /usr/local/Kobo/pickel showpic
rm .last_screen_content
killall -CONT nickel