all repos — tint2 @ 5e9791079d7d30b95d8d3040f932e57b6a180c37

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

systray_hide_by_icon_name if equal to 0 do nothing
iflyun@gmail.com iflyun@gmail.com
commit

5e9791079d7d30b95d8d3040f932e57b6a180c37

parent

4c103423baa178ba01e501d575901b32a3bf45c9

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

jump to
M src/systray/systraybar.csrc/systray/systraybar.c

@@ -590,7 +590,7 @@ // Filter out systray_hide_by_icon_name

char *token; char *string; string = strdup(systray_hide_icons); - if (string != NULL) { + if (string != NULL && string[0] != '0') { while ((token = strsep(&string, ",")) != NULL) { if (strcmp(token,name) == 0) { if (strcmp(token,"") == 0) token = "empty name";