diff options
author | Scott Murray <scott.murray@konsulko.com> | 2018-12-06 10:05:47 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2018-12-07 09:15:24 -0500 |
commit | 24794d197e6d27fbfba9790be1da190fe573a058 (patch) | |
tree | 7d506a9a319fdf3823fab40c5e37825c60e69430 /doc | |
parent | 6a20800629fca350b00ce71a09ba4d71e2f2ee1d (diff) |
Add configuration file over-ride mechanism
Reusing the windowmanager on the cluster demo platform requires
modifications to the layers.json, areas.db, etc. configuration files.
To allow this without breaking potential shared package feeds by
building two versions, add a mechanism to allow over-riding the
configuration files present in the widget with files in the directory
/etc/xdg/windowmanager. Affected code has been refactored to use a new
common configuration file path determination helper function to reduce
duplication.
Bug-AGL: SPEC-1805
Change-Id: Ia3e1af0703794079f9537b934b124788129c045c
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ApplicationGuide.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/ApplicationGuide.md b/doc/ApplicationGuide.md index 2240bb1..3470243 100644 --- a/doc/ApplicationGuide.md +++ b/doc/ApplicationGuide.md @@ -144,7 +144,9 @@ Configuration The window manager is configured with the *layers.json* configuration file, by default it is searched in `${AFM_APP_INSTALL_DIR}/etc/layers.json`. -Note, that the window manager will use default configuration unless this configuration is found. +However, if /etc/xdg/windowmanager/layers.json exists, it will be used instead. +The window manager will use a default configuration unless a configuration file +is found in one of these locations. A sample configuration is provided with the window manager implementation, this sample is installed to ${AFM_APP_INSTALL_DIR}/etc/layers.json. |