]> git.sur5r.net Git - i3/i3status/blobdiff - config.c
Add manpage, ignore spaces in tokens, introduce interval
[i3/i3status] / config.c
index bc1ec4fca29bf1d0c282b305ea31caf8ea614d5a..aa7973e0009296e0109d2734d9bd6925a1d44162 100644 (file)
--- a/config.c
+++ b/config.c
@@ -19,10 +19,11 @@ const char *wmii_path;
 const char *time_format;
 const char *battery_path;
 bool use_colors;
-const char *wmii_normcolors;
+const char *wmii_normcolors = "#222222 #333333";
 char order[MAX_ORDER][2];
 const char **run_watches;
 unsigned int num_run_watches;
+int interval = 1;
 
 void die(const char *fmt, ...);
 
@@ -152,6 +153,8 @@ int load_configuration(const char *configfile) {
                                SET_ORDER("load", ORDER_LOAD);
                                SET_ORDER("time", ORDER_TIME);
                                token = walk;
+                               while (isspace((int)(*token)))
+                                       token++;
                        }
                }
                OPT("color")
@@ -162,6 +165,10 @@ int load_configuration(const char *configfile) {
                {
                        wmii_normcolors = strdup(dest_value);
                }
+               OPT("interval")
+               {
+                       interval = atoi(dest_value);
+               }
                else
                {
                        result = -2;