]> Dogcows Code - chaz/tint2/blobdiff - src/tint.c
remove flickering on systray
[chaz/tint2] / src / tint.c
index baaaf0326928a82b3a478d29304042830b9bc267..94ec86ce6eb9c24e92346085d47f94b6aceb2527 100644 (file)
@@ -359,7 +359,6 @@ void event_property_notify (XEvent *e)
                        for (i=0 ; i < nb_panel ; i++) {
                                set_panel_background(&panel1[i]);
                        }
-                       refresh_systray();
          panel_refresh = 1;
       }
    }
@@ -391,6 +390,7 @@ void event_property_notify (XEvent *e)
       else if (at == server.atom._NET_WM_STATE) {
          if (window_is_urgent (win)) {
                                task_urgent = tsk;
+                               tick_urgent = 0;
                                time_precision = 1;
                        }
                }
@@ -511,8 +511,11 @@ void event_timer()
 
        // urgent task
        if (task_urgent) {
-               task_urgent->area.is_active = !task_urgent->area.is_active;
-               task_urgent->area.redraw = 1;
+               if (tick_urgent < max_tick_urgent) {
+                       task_urgent->area.is_active = !task_urgent->area.is_active;
+                       task_urgent->area.redraw = 1;
+                       tick_urgent++;
+               }
        }
 
        // update battery
@@ -548,8 +551,16 @@ int main (int argc, char *argv[])
 load_config:
    i = 0;
        init_config();
-   if (c != -1)
+   if (c != -1) {
       i = config_read_file (optarg);
+          c = getopt (argc, argv, "j:");
+          if (c != -1) {
+                       // usage: tint2 [-c] <config_file> -j <jpeg_file> for internal use
+          printf("jpeg file %s\n", optarg);
+             cleanup();
+          exit(0);
+               }
+       }
    if (!i)
       i = config_read ();
    if (!i) {
@@ -639,6 +650,10 @@ load_config:
       if (panel_refresh) {
                        panel_refresh = 0;
 
+                       if (refresh_systray) {
+                               panel = (Panel*)systray.area.panel;
+                               XSetWindowBackgroundPixmap (server.dsp, panel->main_win, None);
+                       }
                        for (i=0 ; i < nb_panel ; i++) {
                                panel = &panel1[i];
 
@@ -649,6 +664,15 @@ load_config:
                           XCopyArea(server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
                        }
                        XFlush (server.dsp);
+
+                       if (refresh_systray) {
+                               refresh_systray = 0;
+                               panel = (Panel*)systray.area.panel;
+                               // tint2 doen't draw systray icons. it just redraw background.
+                               XSetWindowBackgroundPixmap (server.dsp, panel->main_win, panel->temp_pmap);
+                               // force icon's refresh
+                               refresh_systray_icon();
+                       }
                }
    }
 }
This page took 0.022023 seconds and 4 git commands to generate.