Quote:
Originally Posted by sergeyvl12
Now you can launch any app and exit from the launcher.
script example:
Code:
#!/bin/sh
echo "exit" > $VLASOVSOFT_FIFO # exit from launcher
# launch your app here
....
|
Quote:
Originally Posted by michald
It is working well for me, nice!
|
I tried launching cr3 with the recipe above and it doesn't seem to work on my Touch. I tried both
Code:
#!/bin/sh
echo "exit" > $VLASOVSOFT_FIFO
cr3/cr3 -stylesheet $STYLESHEET
and
Code:
#!/bin/sh
echo "exit" > $VLASOVSOFT_FIFO
exec cr3/cr3 -stylesheet $STYLESHEET
in cr3.sh and Coolreader never launches; after clicking the launcher icon, it just goes back to the Kobo home screen. Am I missing something? Thanks in advance.