]> Dogcows Code - chaz/tint2/blobdiff - src/config.c
*add* real transparency is now supported... most systray applications work out of...
[chaz/tint2] / src / config.c
index cbb9d664e4dc1a0c5977a0d87a8b47647e30bfa5..41d3f3fd39c2a95a2c377c49d02f52b53a2736fe 100644 (file)
@@ -293,6 +293,16 @@ void add_entry (char *key, char *value)
                panel_dock = atoi (value);
        else if (strcmp (key, "urgent_nb_of_blink") == 0)
                max_tick_urgent = (atoi (value) * 2) + 1;
+       else if (strcmp (key, "real_transparency") == 0)
+               real_transparency = atoi(value);
+       else if (strcmp (key, "panel_layer") == 0) {
+               if (strcmp(value, "bottom") == 0)
+                       panel_layer = BOTTOM_LAYER;
+               else if (strcmp(value, "normal") == 0)
+                       panel_layer = NORMAL_LAYER;
+               else if (strcmp(value, "top") == 0)
+                       panel_layer = TOP_LAYER;
+       }
 
        /* Battery */
        else if (strcmp (key, "battery") == 0) {
This page took 0.024092 seconds and 4 git commands to generate.