View Single Post
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,895
Karma: 12981955
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