Updated docs with settings feature
This commit is contained in:
parent
37a5248a6e
commit
43387d369f
2 changed files with 20 additions and 1 deletions
|
|
@ -10,4 +10,4 @@ Most code for features can be found in the [features](../../src/features) direct
|
|||
- [Virtual Drive](./virtual-drive//README.md)
|
||||
- [Windows](./windows/README.md)
|
||||
- [Taskbar](./taskbar/README.md)
|
||||
|
||||
- [Settings](./settings/README.md)
|
||||
|
|
|
|||
19
docs/features/settings/README.md
Normal file
19
docs/features/settings/README.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
[← Back](../README.md)
|
||||
|
||||
# Settings
|
||||
|
||||
Each group of settings is controlled by a separate xml file. The virtual directory for these files is `~/.config`. The default values for these files can be viewed and edited inside the [public/config](../../../public/config/) directory.
|
||||
|
||||
## Example
|
||||
|
||||
```xml
|
||||
<!-- public/config/desktop.xml -->
|
||||
|
||||
<!-- This config file defines the default path to the desktop wallpaper.
|
||||
The virtual file can be found at "~/.config/desktop.xml". -->
|
||||
|
||||
<?xml version="1.0"?>
|
||||
<options>
|
||||
<wallpaper>/media/wallpapers/Wallpaper1.png</wallpaper>
|
||||
</options>
|
||||
```
|
||||
Loading…
Reference in a new issue