To set Notifications on lock screen to Full list using ADB on LineageOS, you need to modify the system setting responsible for lock screen notification visibility. The relevant ADB command is:
bashadb shell settings put global lock_screen_show_notifications 1
However, to specifically show the full content of notifications (not just the app name), you may also need to set:
bashadb shell settings put global lock_screen_allow_private_notifications 1
If these commands do not work as expected, you can also try:
bashadb shell settings put secure lock_screen_show_notifications 1
These commands enable all notifications to appear on the lock screen, including their full content. If you want to ensure that sensitive content is also shown, the second command is crucial.
Note: Some LineageOS versions or devices may require additional tweaks or have different setting names. If the above does not work, you may need to check your specific LineageOS version's documentation or settings database for the exact key.
Would you like help checking the current value of these settings or troubleshooting further? {"query": "LineageOS adb lock screen notification full content setting"}