agree: change dwm-autodarkmode signal to USR1 and leave restarsig signal to HUP

This commit is contained in:
2025-10-06 22:55:43 +02:00
parent 272db9d233
commit b6d063c786

4
dwm.c
View File

@@ -1744,10 +1744,10 @@ setup(void)
sa.sa_handler = SIG_IGN; sa.sa_handler = SIG_IGN;
sigaction(SIGCHLD, &sa, NULL); sigaction(SIGCHLD, &sa, NULL);
/* set color mode on SIGHUP */ /* set color mode on SIGUSR1 */
sigemptyset(&sa.sa_mask); sigemptyset(&sa.sa_mask);
sa.sa_handler = colormodehandler; sa.sa_handler = colormodehandler;
sigaction(SIGHUP, &sa, NULL); sigaction(SIGUSR1, &sa, NULL);
/* clean up any zombies (inherited from .xinitrc etc) immediately */ /* clean up any zombies (inherited from .xinitrc etc) immediately */
while (waitpid(-1, NULL, WNOHANG) > 0); while (waitpid(-1, NULL, WNOHANG) > 0);