]> Dogcows Code - chaz/tint2/blobdiff - src/config.c
*fix* use another timer implementation, coz *BSD does not support timerfd :(
[chaz/tint2] / src / config.c
index 1e8340452e0be7879f4039f4752743ff0b2d5acd..caebe6476638bd3bf3ef9d132eb1b2f01518581b 100644 (file)
@@ -45,6 +45,7 @@
 #include "config.h"
 #include "window.h"
 #include "tooltip.h"
+#include "timer.h"
 
 #ifdef ENABLE_BATTERY
 #include "battery.h"
@@ -173,6 +174,10 @@ void get_action (char *event, int *action)
                *action = DESKTOP_LEFT;
        else if (strcmp (event, "desktop_right") == 0)
                *action = DESKTOP_RIGHT;
+       else if (strcmp (event, "next_task") == 0)
+               *action = NEXT_TASK;
+       else if (strcmp (event, "prev_task") == 0)
+               *action = PREV_TASK;
 }
 
 
@@ -520,20 +525,12 @@ void add_entry (char *key, char *value)
        else if (strcmp (key, "tooltip") == 0)
                g_tooltip.enabled = atoi(value);
        else if (strcmp (key, "tooltip_show_timeout") == 0) {
-               double timeout = atof(value);
-               int sec = (int)timeout;
-               int nsec = (timeout-sec)*1e9;
-               if (nsec < 0)  // can happen because of double is not precise such that (sec > timeout)==TRUE
-                       nsec = 0;
-               g_tooltip.show_timeout = (struct timespec){.tv_sec=sec, .tv_nsec=nsec};
+               int timeout_msec = 1000*atof(value);
+               g_tooltip.show_timeout_msec = timeout_msec;
        }
        else if (strcmp (key, "tooltip_hide_timeout") == 0) {
-               double timeout = atof(value);
-               int sec = (int)timeout;
-               int nsec = (timeout-sec)*1e9;
-               if (nsec < 0)  // can happen because of double is not precise such that (sec > timeout)==TRUE
-                       nsec = 0;
-               g_tooltip.hide_timeout = (struct timespec){.tv_sec=sec, .tv_nsec=nsec};
+               int timeout_msec = 1000*atof(value);
+               g_tooltip.hide_timeout_msec = timeout_msec;
        }
        else if (strcmp (key, "tooltip_padding") == 0) {
                extract_values(value, &value1, &value2, &value3);
This page took 0.024268 seconds and 4 git commands to generate.