App Configuration

This guide is for apps that come with the phone. For custom apps, see the custom apps guide.

Renaming apps

The app names are located in the locales files. To rename an app, navigate to lb-phone/config/locales/xx.json and find the app you want to rename in the APP_NAMES object. If there is no APP_NAMES object, copy the one from the en.json file.

Removing apps

To remove an app, navigate to lb-phone/config/config.json and find the app you want to remove. Then remove the app from the apps object.

Before
"apps": {
    "Phone": {
        "name": "Phone",
        "removable": false,
        "size": 1900
    },
    "Messages": {
        "name": "Messages",
        "removable": false,
        "size": 4400
    },
}
After
"apps": {
    "Phone": {
        "name": "Phone",
        "removable": false,
        "size": 1900
    },
}

Change icons

To change an app icon, navigate to the lb-phone/ui/dist/assets/img/icons/apps/ folder and replace the icon with the desired icon. Make sure the icon is a .jpg file and has the same name as the app.