Add support for per-host user configuration

This uses KDL properties, i.e. "host=<hostname>" and can be applied to
any config type. An example is includes in examples/config.kdl.

```kdl
    wallpaper_image_path "~/Pictures/desktop.png" host="desktop"
    wallpaper_image_path "~/Pictures/laptop.png" host="laptop"
```
This commit is contained in:
Ben Buhse 2026-02-11 13:59:37 -06:00
commit 0b7e15d7ed
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
4 changed files with 63 additions and 12 deletions

View file

@ -10,7 +10,6 @@ SPDX-License-Identifier: GPL-3.0-or-later
These are in rough order of my priority, though no promises I do them in this order.
- [ ] Support per-host config using properties
- [ ] Implement an optional clock bar
- [ ] Implement a rivertile clone
- [ ] Support overriding config location
@ -31,3 +30,4 @@ These are in rough order of my priority, though no promises I do them in this or
- [x] Implement runtime log levels
- [x] Add input configuration, i.e. pointer acceleration and that type of thing
- [x] Support `None` modifier for keybinds (needed for media/brightness keys)
- [x] Support per-host config using properties