all repos — tint2 @ 1d4f64d745cad9a84527fdfa06529c3e79ca9c7f

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

Fixed typo causing missing startup notifications
o9000 mrovi9000@gmail.com
commit

1d4f64d745cad9a84527fdfa06529c3e79ca9c7f

parent

2857b96c4d37c88ca31708e665b13b13ff1acc83

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

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

@@ -487,7 +487,7 @@ } else {

fcntl(sn_pipe[0], F_SETFL, O_NONBLOCK | fcntl(sn_pipe[0], F_GETFL)); fcntl(sn_pipe[1], F_SETFL, O_NONBLOCK | fcntl(sn_pipe[1], F_GETFL)); sn_pipe_valid = 1; - struct sigaction act = {.sa_handler = sigchld_handler, .sa_flags = SA_NOCLDWAIT | SA_RESTART}; + struct sigaction act = {.sa_handler = sigchld_handler, .sa_flags = SA_RESTART}; if (sigaction(SIGCHLD, &act, 0)) { perror("sigaction"); }