Mmm, for the tiles on the launcher there are a few things.
Code:
C:\>adb pull /data/data/com.onyx/databases/AppDatabase.db
C:\>sqlite3 AppDatabase.db
sqlite> select page, y, x, json_extract(data, '$.labelName') from AppItemModel order by page, y, x;
0|0|0|NeoBrowser
0|0|1|Song View
0|0|2|Dictionary
0|0|3|Calendar Memo
0|1|0|OI File Manager
0|1|1|Notepad
0|1|2|BooxDrop
0|1|3|Recorder
0|2|0|Heart Monitor
0|2|1|Lunch
0|2|2|Navigation Ball
0|2|3|Magisk
0|3|0|Music
0|3|1|Footsie
0|3|2|Battery Monitor
0|3|3|Lights
1|0|0|USB Mode Utility
1|0|1|Billboard
1|0|2|Last Read
1|0|3|Recorder
1|1|0|Demo
1|1|1|Terminal
1|1|2|Walker
1|1|3|Email
1|2|0|Library
1|2|1|APP Store
1|2|2|Calculator
1|2|3|Gallery
1|3|0|Clock
1|3|1|Screensaver
1|3|2|PushRead
This is showing two pages of 4 x 4 tiles. I'm not sure that this actually represents the correct order. Does it for you? (This has lots of my own junk on it.)
Caveats: You need a rooted ADB to pull that db directly without copying it to /sdcard and pulling.
There is no sqlite3 command line on my Poke3.You can install sqlite3 on your desktop or on the device. Because the info is JSON encoded you need the latest version of sqlite3 to extract it.