Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > PocketBook > PocketBook Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 03-08-2024, 01:15 PM   #76
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,206
Karma: 10057265
Join Date: Mar 2023
Location: An island off the coast of Ireland
Device: PB632 [HD3]
Should anyone wish to change the control panel icons (Wifi, BT, Flight Mode etc) new icons for those can be placed in the same directory as the lock screen image e.g.
/mnt/ext1/system/resources/Line/

The names are:
Code:
"SH_POWEROFF"
	"icon":       "taskmgr_off",
	"icon_focus": "taskmgr_off_f"

"SH_SCREENSHOT"
	"icon":       "taskmgr_screenshot",
	"icon_focus": "taskmgr_screenshot_f"

"SH_LOCK"
	"icon":       "taskmgr_lock",
	"icon_focus": "taskmgr_lock_f"

"SH_AUTOROTATE"
	"icon":	      "ctrl_panel_auto_rotate",
	"icon_focus": "ctrl_panel_auto_rotate_f"

"SH_FRONTLIGHT"
	"icon":	      "ctrl_panel_frontlight",
	"icon_focus": "ctrl_panel_frontlight_f"

"SH_SEARCH"
	"icon":	      "ctrl_panel_search",
	"icon_focus": "ctrl_panel_search_f"

"SH_SETTINGS"
	"icon":	      "ctrl_panel_settings",
	"icon_focus": "ctrl_panel_settings_f",

"SH_SYNC"
	"icon":	      "ctrl_panel_sync",
	"icon_focus": "ctrl_panel_sync_f"

"SH_FLIGHTMODE"
	"icon":	      "ctrl_panel_flight_mode",
	"icon_focus": "ctrl_panel_flight_mode_f"

"SH_TASKMANAGER"
	"icon":	      "ctrl_panel_taskmgr",
	"icon_focus": "ctrl_panel_taskmgr_f"

"SH_BLUETOOTH"
	"icon":	      "ctrl_panel_bluetooth",
	"icon_focus": "ctrl_panel_bluetooth_f",

"SH_WIFI"
	"icon":	      "ctrl_panel_wifi",
	"icon_focus": "ctrl_panel_wifi_f",

"SH_NIGHTMODE"
	"icon":	      "ctrl_panel_night_mode",
	"icon_focus": "ctrl_panel_night_mode_f"
This info is from:
/ebrmain/config/control_panel/shortcuts_db.json
It lists all the app pathnames as well, so very similar to view.json.

/mnt/system/config/control_panel/user_shortcuts.json
simply contains the list of the control panel apps currently active, e.g.
Code:
{"shortcuts":[{"id":"SH_WIFI"},{"id":"SH_BLUETOOTH"},{"id":"SH_FLIGHTMODE"},{"id":"SH_NIGHTMODE"},{"id":"SH_POWEROFF"}],"version":1}
The "id" all being the same as found in shortcuts_db.json.

If you add user apps to the control panel and then check user_shortcuts.json the apps are prefixed with UR_ rather than the system apps with SH_ (e.g. UR_koreader).

I've tried copying shortcuts_db.json across to the user area and adding an entry for koreader, but no luck.

I also edited /ebrmain/config/control_panel/shortcuts_db.json directly, adding the koreader info, but no luck with this either, still no change of icon.

For the moment you can only change the system control panel icons.

Last edited by neil_swann80; 03-08-2024 at 02:03 PM.
neil_swann80 is offline   Reply With Quote
Old 03-17-2024, 11:17 AM   #77
Michal Jancik
Sorry for my English
Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.
 
Michal Jancik's Avatar
 
Posts: 419
Karma: 3003406
Join Date: Aug 2018
Location: France/Besancon 25000
Device: KOBO H2O,Inkpad 4,ONYX Leaf 2
At least KORADER icons can be changed easily

Attached Thumbnails
Click image for larger version

Name:	mread_kor_custom.png
Views:	75
Size:	37.7 KB
ID:	206959  
Michal Jancik is offline   Reply With Quote
Old 03-17-2024, 01:40 PM   #78
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,206
Karma: 10057265
Join Date: Mar 2023
Location: An island off the coast of Ireland
Device: PB632 [HD3]
Quote:
Originally Posted by Michal Jancik View Post
At least KORADER icons can be changed easily
Nice! Got a link for them? Or were they self-made?
neil_swann80 is offline   Reply With Quote
Old 03-17-2024, 01:46 PM   #79
Michal Jancik
Sorry for my English
Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.
 
Michal Jancik's Avatar
 
Posts: 419
Karma: 3003406
Join Date: Aug 2018
Location: France/Besancon 25000
Device: KOBO H2O,Inkpad 4,ONYX Leaf 2
Quote:
Originally Posted by neil_swann80 View Post
Nice! Got a link for them? Or were they self-made?
Yes, made in HOME

Icons downloaded from: : https://www.svgrepo.com/collection/web-design-11/
(open licensed)

Basically, just move the downloaded icons to folder (Pocketbook): \applications\koreader\resources\icons\mdlight and rename them according to the original name of the icon you want to replace. Certainly nothing complicated for you.

At the moment I need to choose the right (adequate) icons for the top menu.

Attached Thumbnails
Click image for larger version

Name:	kor_ui_custom_1.png
Views:	74
Size:	16.5 KB
ID:	206962  

Last edited by Michal Jancik; 03-17-2024 at 02:00 PM.
Michal Jancik is offline   Reply With Quote
Old 03-17-2024, 03:32 PM   #80
Michal Jancik
Sorry for my English
Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.
 
Michal Jancik's Avatar
 
Posts: 419
Karma: 3003406
Join Date: Aug 2018
Location: France/Besancon 25000
Device: KOBO H2O,Inkpad 4,ONYX Leaf 2
KOREADER ICON REMPLACEMMENT
(unofficial releases, custom versions)

V1.0

PREVIEW CLICK HERE :
Spoiler:


Etract to root folder of Pocketbook

Only the main icons were changed, the script was not interfered with.
Extract directly to the reader pocketbook, or the icons themselves from the mdlight address book.
Attached Thumbnails
Click image for larger version

Name:	KOR_ALFA_1.png
Views:	73
Size:	72.7 KB
ID:	206966  
Attached Files
File Type: zip koreader_gui_update.zip (172.4 KB, 58 views)

Last edited by Michal Jancik; 03-17-2024 at 03:38 PM.
Michal Jancik is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Remove question mark icons KayLee Calibre 2 03-05-2016 11:38 AM
desktop icons disappeared after reboot futureway enTourage eDGe 5 11-30-2011 07:27 AM
Totally stupid question: where's my app drawer? maxbookworm Nook Developer's Corner 6 01-26-2011 10:13 PM
DR800 Icons for desktop files Iñigo iRex Developer's Corner 3 05-16-2010 06:26 PM
no desktop icons on boot-up Unregistered Lounge 11 08-16-2005 12:47 PM


All times are GMT -4. The time now is 07:53 PM.


MobileRead.com is a privately owned, operated and funded community.