all repos — tint2 @ dbf065ab12e44932e5bef27a9e47d681e63c7018

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

Always enable mouse effects (workaround for issue #542)
o9000 mrovi9000@gmail.com
commit

dbf065ab12e44932e5bef27a9e47d681e63c7018

parent

79fa4b3ad53b540e7be6d853eb32535fa13cb8ee

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

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

@@ -973,7 +973,8 @@ get_action(value, &mouse_scroll_up);

else if (strcmp(key, "mouse_scroll_down") == 0) get_action(value, &mouse_scroll_down); else if (strcmp(key, "mouse_effects") == 0) - panel_config.mouse_effects = atoi(value); + // panel_config.mouse_effects = atoi(value); + panel_config.mouse_effects = 1; else if (strcmp(key, "mouse_hover_icon_asb") == 0) { extract_values(value, &value1, &value2, &value3); panel_config.mouse_over_alpha = atoi(value1);
M src/panel.csrc/panel.c

@@ -103,6 +103,7 @@ panel_config.mouse_over_brightness = 10;

panel_config.mouse_pressed_alpha = 100; panel_config.mouse_pressed_saturation = 0; panel_config.mouse_pressed_brightness = 0; + panel_config.mouse_effects = 1; // First background is always fully transparent Background transparent_bg;