mirror of
https://github.com/emersion/kanshi
synced 2024-11-23 00:02:16 +01:00
13 lines
234 B
C
13 lines
234 B
C
#include <stdlib.h>
|
|
|
|
#include "parser.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
struct kanshi_config *config = parse_config("/home/simon/.config/kanshi/config");
|
|
if (config == NULL) {
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|