====== Settings JSON Format ====== The ui settings file contains the ui configurations in json format. User can change this file to reflect the changes in the ui. As of now only toolbar configuration has been added. [[https://github.com/LibreCAD/LibreCAD_3/blob/master/lcUI/settings_schema.json|JSON schema]] for the settings file. ===== Toolbar Configuration JSON Format ===== Toolbar configuration is stored in the following format. { "toolbar": { "tabs": [ { "label": "Tab1", "groups": [ { "label": "Group1", "width": 3, "buttons": [ "Button1", "Button2"] }, { "label": "Group2", "width": 3, "buttons": [ "Button3" ] } ] } ] } }