confer/README.md

28 lines
715 B
Markdown
Raw Normal View History

2024-08-01 01:48:11 +00:00
# confer | MatterLinux configuration manager
`confer` is a simple tool for managing desktop/window manager configurations,
2024-05-01 20:11:55 +00:00
it allows you to easily create configurations from your dot files and
allows you to easily install them
2024-05-01 18:02:15 +00:00
### Installation
To compile `confer` and to use it, you will need the following:
- gcc
2024-05-01 20:11:55 +00:00
- libgit2
2024-05-01 18:02:15 +00:00
- make
- gettext
2024-05-01 20:11:55 +00:00
- libinih
2024-05-09 20:17:18 +00:00
- curl
2024-05-01 18:02:15 +00:00
- doas (or sudo)
After installing these dependencies, **download the latest
2024-05-01 18:02:15 +00:00
release for a stable build**. Clone the repository only for development.
After downloading the source code, you can compile `confer` using the
2024-05-01 18:02:15 +00:00
`make` tool:
2024-08-01 01:48:11 +00:00
```bash
2024-05-01 18:02:15 +00:00
make
```
2024-05-01 20:11:55 +00:00
After compiling it, you can install the binary, locales and the symbolic links:
2024-08-01 01:48:11 +00:00
```bash
2024-05-01 18:02:15 +00:00
make install
```