[wip] Support rc.yaml

Tried with:

    ---
    theme:
    - name: Adwaita-light
    - cornerRadius: 2
    ...

Needs lots of testing.
This commit is contained in:
Johan Malm 2024-08-13 20:58:51 +01:00
parent 6687640665
commit 608246aac8
5 changed files with 173 additions and 8 deletions

11
include/config/yaml2xml.h Normal file
View file

@ -0,0 +1,11 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_YAML2XML_H
#define LABWC_YAML2XML_H
#include <stdbool.h>
#include <stdio.h>
struct buf;
bool yaml_to_xml(struct buf *buffer, const char *filename);
#endif /* LABWC_YAML2XML_H */