]> git.sur5r.net Git - i3/i3status/blobdiff - config.c
Remove debugmessage
[i3/i3status] / config.c
index e8c95dc1523f8009272b3e03d0636e7ff855d473..ed5c96fa8e3238627030e204f3b40d3746b2f48e 100644 (file)
--- a/config.c
+++ b/config.c
@@ -19,6 +19,7 @@ const char *wmii_path;
 const char *time_format;
 const char *battery_path;
 bool use_colors;
+bool get_ethspeed;
 const char *wmii_normcolors = "#222222 #333333";
 char order[MAX_ORDER][2];
 const char **run_watches;
@@ -108,8 +109,11 @@ int load_configuration(const char *configfile) {
                OPT("wmii_path")
                {
                        char *globbed = glob_path(dest_value);
-                       if ((stat(globbed, &stbuf)) == -1)
-                               die("wmii_path contains an invalid path");
+                       if ((stat(globbed, &stbuf)) == -1) {
+                               fprintf(stderr, "Warning: wmii_path contains an invalid path\n");
+                               free(globbed);
+                               globbed = strdup(dest_value);
+                       }
                        if (globbed[strlen(globbed)-1] != '/')
                                die("wmii_path is not terminated by /");
                        wmii_path = globbed;
@@ -161,6 +165,10 @@ int load_configuration(const char *configfile) {
                {
                        use_colors = true;
                }
+               OPT("get_ethspeed")
+               {
+                       get_ethspeed = true;
+               }
                OPT("normcolors")
                {
                        wmii_normcolors = strdup(dest_value);
@@ -179,7 +187,7 @@ int load_configuration(const char *configfile) {
        fclose(handle);
 
        if (wmii_path == NULL)
-               exit(-4);
+               exit(EXIT_FAILURE);
 
        return result;
 }