Compare commits
2 Commits
5106df2847
...
243c2b8b57
Author | SHA1 | Date | |
---|---|---|---|
243c2b8b57 | |||
8105b88645 |
30
README.md
30
README.md
@ -1 +1,31 @@
|
|||||||
# Kobo Reader Web portal
|
# Kobo Reader Web portal
|
||||||
|
This repo aims to create a quick and easy web portal for Kobo E-ink devices, it includes a search bar for DuckDuckGo and some common sites that are usable on the limited web browser.
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
1. Copy this repository to your Kobo device. It is recommended to create a new folder in `.adds`, in this case I have named it `web`.
|
||||||
|
2. Add the following to `.kobo/Kobo/Kobo eReader.conf` to prevent Nickel from adding the `.html` and `.svg` files to your library
|
||||||
|
|
||||||
|
```
|
||||||
|
[FeatureSettings]
|
||||||
|
ExcludeSyncFolders=(\\.(?!kobo|adobe).+|([^.][^/]*/)+\\..+)
|
||||||
|
```
|
||||||
|
3. Open the web browser in Nickel, browse to `file:///mnt/onboard/.adds/web/html/index.html` and set it as your start page using the context menu or continue to [setup with Nickelmenu](#nickelmenu-setup)
|
||||||
|
|
||||||
|
### NickelMenu setup
|
||||||
|
For easier access, add the web browser to [NickelMenu](https://pgaskin.net/NickelMenu/) by putting the following in `.adds/nm/config`.
|
||||||
|
|
||||||
|
```
|
||||||
|
menu_item:main:Web Browser:nickel_browser:file:///mnt/onboard/.adds/web/html/index.html
|
||||||
|
menu_item:browser:Close:nickel_misc:home
|
||||||
|
```
|
||||||
|
|
||||||
|
This will open the web browser in full screen which is nice, however, you won't be able to close it without rebooting your device. The second line adds a `Close` button in the browser menu to go back to the home screen.
|
||||||
|
|
||||||
|
> :note: **Heads up:**<br>
|
||||||
|
> Remember to change the path in the first line if you choose to put the contents of this repository somewhere else.
|
||||||
|
|
||||||
|
## Screenshot
|
||||||
|
![Screenshot 1](./res/screenshots/screen_002.png)
|
||||||
|
|
||||||
|
---
|
||||||
|
Arne van Iterson, 2023
|
@ -12,14 +12,14 @@
|
|||||||
<img src="../res/rakobo.png" alt="Kobo logo">
|
<img src="../res/rakobo.png" alt="Kobo logo">
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
<img src="../res/mdi/magnify.svg" alt="Magnify icon">
|
<img src="../res/mdi/svg/magnify.svg" alt="Magnify icon">
|
||||||
Search
|
Search
|
||||||
</h2>
|
</h2>
|
||||||
<form action="https://duckduckgo.com/" method="get">
|
<form action="https://duckduckgo.com/" method="get">
|
||||||
<hr>
|
<hr>
|
||||||
<input type="search" name="q" placeholder="Search DuckDuckGo">
|
<input type="search" name="q" placeholder="Search DuckDuckGo">
|
||||||
<button type="submit">
|
<button type="submit">
|
||||||
<img src="../res/mdi/magnify.svg" alt="Magnify icon">
|
<img src="../res/mdi/svg/magnify.svg" alt="Magnify icon">
|
||||||
Search
|
Search
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
@ -27,21 +27,21 @@
|
|||||||
|
|
||||||
|
|
||||||
<h2>
|
<h2>
|
||||||
<img src="../res/mdi/web.svg" alt="Web icon">
|
<img src="../res/mdi/svg/web.svg" alt="Web icon">
|
||||||
Pick-a-site
|
Pick-a-site
|
||||||
</h2>
|
</h2>
|
||||||
<div>
|
<div>
|
||||||
<hr>
|
<hr>
|
||||||
<button onclick="window.location.href='https://google.com/'">
|
<button onclick="window.location.href='https://google.com/'">
|
||||||
<img src="../res/mdi/google.svg" alt="Google logo">
|
<img src="../res/mdi/svg/google.svg" alt="Google logo">
|
||||||
Google
|
Google
|
||||||
</button>
|
</button>
|
||||||
<button onclick="window.location.href='https://duckduckgo.com/'">
|
<button onclick="window.location.href='https://duckduckgo.com/'">
|
||||||
<img src="../res/mdi/duck.svg" alt="Duck logo">
|
<img src="../res/mdi/svg/duck.svg" alt="Duck logo">
|
||||||
DuckDuckGo
|
DuckDuckGo
|
||||||
</button>
|
</button>
|
||||||
<button onclick=" window.location.href='https://nl.wikipedia.org/'">
|
<button onclick=" window.location.href='https://nl.wikipedia.org/'">
|
||||||
<img src="../res/mdi/wikipedia.svg" alt="Wikipedia logo">
|
<img src="../res/mdi/svg/wikipedia.svg" alt="Wikipedia logo">
|
||||||
Wikipedia NL
|
Wikipedia NL
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
BIN
res/screenshots/screen_002.png
Normal file
BIN
res/screenshots/screen_002.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 66 KiB |
BIN
res/screenshots/screen_003.png
Normal file
BIN
res/screenshots/screen_003.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 84 KiB |
Loading…
Reference in New Issue
Block a user