summary refs log tree commit diff
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan <okan>2012-12-18 00:14:41 +0000
committerokan <okan>2012-12-18 00:14:41 +0000
commitb848a2b236424a33d0fcf1f07e3b4473a56604ff (patch)
treef9f0e26c5276594a2afb01707b7a3536a1cb56dd /calmwm.c
parent479e9f769c5a822da49ec60cd7ceb533e1739527 (diff)
downloadcwm-b848a2b236424a33d0fcf1f07e3b4473a56604ff.tar.gz
cwm-b848a2b236424a33d0fcf1f07e3b4473a56604ff.tar.xz
cwm-b848a2b236424a33d0fcf1f07e3b4473a56604ff.zip
simplify config file setup; with Tiago Cunha
Diffstat (limited to 'calmwm.c')
-rw-r--r--calmwm.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/calmwm.c b/calmwm.c
index 2c02342..25ac559 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -62,7 +62,7 @@ int
 main(int argc, char **argv)
 {
 	const char	*conf_file = NULL;
-	char		*display_name = NULL;
+	char		*conf_path, *display_name = NULL;
 	int		 ch;
 	struct passwd	*pw;
 
@@ -97,10 +97,25 @@ main(int argc, char **argv)
 			homedir = "/";
 	}
 
+	if (conf_file == NULL)
+		xasprintf(&conf_path, "%s/%s", homedir, CONFFILE);
+	else
+		conf_path = xstrdup(conf_file);
+
+	if (access(conf_path, R_OK) != 0) {
+		if (conf_file != NULL)
+			warn("%s", conf_file);
+		free(conf_path);
+		conf_path = NULL;
+	}
+
 	dpy_init(display_name);
 
-	bzero(&Conf, sizeof(Conf));
-	conf_setup(&Conf, conf_file);
+	conf_init(&Conf);
+	if (conf_path && (parse_config(conf_path, &Conf) == -1))
+		warnx("config file %s has errors, not loading", conf_path);
+	free(conf_path);
+
 	xu_getatoms();
 	x_setup();
 	xev_loop();