View Single Post
Old 03-05-2025, 01:27 AM   #1
neil_swann80
0000000000101010
neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.neil_swann80 ought to be getting tired of karma fortunes by now.
 
neil_swann80's Avatar
 
Posts: 5,894
Karma: 12981955
Join Date: Mar 2023
Location: An island off the coast of Ireland
Device: PB632 [HD3]
Koreader download and install script

Basic script to download and install the latest version of Koreader directly from Pocketbook devices.

I may expand on the functionality if there's interest; perhaps adding uninstall and settings backup options.

Code:
#!/bin/sh
tmpDir=/var/tmp/koreader
rm -rf $tmpDir; mkdir $tmpDir; cd $tmpDir
curl -s https://api.github.com/repos/koreader/koreader/releases/latest \
| grep -wo "https.*pocketbook.*zip" | wget -qi -
unzip $tmpDir/$(ls) -d /mnt/ext1

Last edited by neil_swann80; 03-10-2025 at 07:15 AM.
neil_swann80 is offline   Reply With Quote