]> Pileus Git - lackey/blobdiff - src/main.c
Bump copyright on files modified in 2013
[lackey] / src / main.c
index bec3b1c09616555ff72d6308a51735f92e056b69..fdcfbd8dd637ed0bce733eb58b4d4f06d0e5505e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
+ * Copyright (C) 2012-2013 Andy Spencer <andy753421@gmail.com>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#define _XOPEN_SOURCE
+
 #include <stdlib.h>
 #include <signal.h>
 #include <locale.h>
 #include <ncurses.h>
 
 #include "util.h"
+#include "conf.h"
 #include "date.h"
 #include "cal.h"
 #include "view.h"
 
+/* Config parser */
+static void on_config(const char *group, const char *name, const char *key, const char *value)
+{
+       view_config(group, name, key, value);
+       cal_config(group, name, key, value);
+}
+
 /* Control-C handler, so we don't hose the therminal */
 static void on_sigint(int signum)
 {
@@ -38,6 +48,10 @@ int main(int argc, char **argv)
        /* Misc setup */
        signal(SIGINT, on_sigint);
 
+       /* Set default escape timeout */
+       if (!getenv("ESCDELAY"))
+               putenv("ESCDELAY=25");
+
        /* Setup Curses */
        setlocale(LC_ALL, "");
        initscr();
@@ -61,8 +75,12 @@ int main(int argc, char **argv)
        init_pair(COLOR_WORK,  COLOR_MAGENTA, -1);
        init_pair(COLOR_OTHER, COLOR_RED,     -1);
 
+       /* Configuration */
+       conf_setup(argc, argv, ".lackeyrc", on_config);
+
        /* Initialize */
        util_init();
+       conf_init();
        date_init();
        cal_init();
        view_init();
@@ -73,6 +91,7 @@ int main(int argc, char **argv)
        /* Run */
        while (1) {
                MEVENT btn;
+               conf_sync();
                int chr = getch();
                if (chr == 'q')
                        break;
@@ -88,9 +107,10 @@ int main(int argc, char **argv)
                                view_resize();
                                view_draw();
                                continue;
-                       case '\14':
+                       case '\14': // Ctrl-L
                                clear();
-                       case '\7':
+                       case '\7':  // Ctrl-G
+                               view_resize();
                                view_draw();
                                continue;
                }