swaynag: allow specifying more buttons which execute and dismiss

I don't love -z / -Z, but I figure this patch is far from being
accepted for other reasons too.
This commit is contained in:
Graham Christensen 2020-06-07 10:47:56 -04:00 committed by Simon Ser
parent ce494a5811
commit a974300652
4 changed files with 30 additions and 1 deletions

View file

@ -76,6 +76,11 @@ static void swaynag_button_execute(struct swaynag *swaynag,
}
_exit(EXIT_SUCCESS);
}
if (button->dismiss) {
swaynag->run_display = false;
}
if (waitpid(pid, NULL, 0) < 0) {
sway_log_errno(SWAY_DEBUG, "waitpid failed");
}