all repos — tint2 @ c13397aff6cb802a480a93a88a34a9226d2dfe43

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*fix* do not multiply max_tick_urgent by 2 because the user should decide whether to end up in the casual state or the urgent state



git-svn-id: http://tint2.googlecode.com/svn/trunk@516 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

c13397aff6cb802a480a93a88a34a9226d2dfe43

parent

9899d8a7c0e88df44b5c493e142e90ecdfffcc9a

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/config.csrc/config.c

@@ -279,7 +279,7 @@ wm_menu = atoi (value);

else if (strcmp (key, "panel_dock") == 0) panel_dock = atoi (value); else if (strcmp (key, "urgent_nb_of_blink") == 0) - max_tick_urgent = (atoi (value) * 2) + 1; + max_tick_urgent = atoi (value); else if (strcmp (key, "panel_layer") == 0) { if (strcmp(value, "bottom") == 0) panel_layer = BOTTOM_LAYER;
M src/panel.csrc/panel.c

@@ -87,7 +87,7 @@ panel_strut_policy = STRUT_FOLLOW_SIZE;

panel_dock = 0; // default not in the dock panel_layer = BOTTOM_LAYER; // default is bottom layer wm_menu = 0; - max_tick_urgent = 7; + max_tick_urgent = 14; backgrounds = g_array_new(0, 0, sizeof(Background)); memset(&panel_config, 0, sizeof(Panel));