2024-08-01 01:48:11 +00:00
|
|
|
# confer | MatterLinux configuration manager
|
|
|
|
`coner` 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
|
2024-08-01 01:48:11 +00:00
|
|
|
To compile `coner` and to use it, you will need the following:
|
2024-05-01 18:02:15 +00:00
|
|
|
- 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
|
|
|
|
release for a stable build**. Clone the repository only for development.
|
|
|
|
|
2024-05-01 20:11:55 +00:00
|
|
|
After downloading the source code, you can compile `mc` 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
|
|
|
|
```
|