-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Desktop integration | ||
|
||
To customize the application icon and group: | ||
|
||
1. One must copy two icons in BMP format on the e-reader (eg under | ||
`/mnt/ext1/application/icons/`). One is used to represent the | ||
application in the "desktop" view, the other is displayed | ||
temporarily when the application is launched. | ||
|
||
Samples icons are provided: [taranis.bmp](./taranis.bmp) and | ||
[taranis_f.bmp](./taranis_f.bmp). | ||
|
||
2. Then the `/mnt/ext1/system/config/desktop/view.json` file must be | ||
edited on the e-reader (the file path may vary depending on the | ||
use of profiles): | ||
|
||
```diff | ||
--- "/mnt/ext1/system/profiles/matthias/config/desktop/view.orig.json" 2023-09-30 20:20:34.454795306 +0200 | ||
+++ "/mnt/ext1/system/profiles/matthias/config/desktop/view.json" 2023-09-30 20:21:06.283101211 +0200 | ||
@@ -27,7 +27,13 @@ | ||
" \"focused_icon\": { \"path\": \"applications/icons/my_calc_icon_f.bmp\" }\n", | ||
" }\n", | ||
"end." | ||
- ] | ||
+ ], | ||
+ "U_Taranis": { | ||
+ "path": "/mnt/ext1/applications/taranis.app", | ||
+ "title": "Taranis", | ||
+ "icon": "/mnt/ext1/applications/icons/taranis.bmp", | ||
+ "focused_icon": "/mnt/ext1/applications/icons/taranis_f.bmp" | ||
+ } | ||
}, | ||
"view": { | ||
"_comment": [ | ||
@@ -57,7 +63,8 @@ | ||
"PB_Onleihe", | ||
"PB_Player", | ||
"PB_RSSNews", | ||
- "PB_Settings" | ||
+ "PB_Settings", | ||
+ "U_Taranis" | ||
] | ||
}, | ||
{ | ||
``` |