1
0
mirror of https://github.com/emersion/kanshi synced 2024-11-23 00:02:16 +01:00
kanshi/main.c
2019-06-01 13:25:09 +03:00

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;
}