*add* real transparency is now supported... most systray applications work out of the box. Some do not work yet, because they do not respect
freedesktops standard git-svn-id: http://tint2.googlecode.com/svn/trunk@308 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
10
src/config.c
10
src/config.c
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user