mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-28 22:23:42 +01:00
Handle SIGINT
Gracefully exit on SIGINT, like we do for SIGTERM.
This commit is contained in:
parent
45aa5c104c
commit
6991ac8c70
1 changed files with 1 additions and 0 deletions
|
@ -367,6 +367,7 @@ int main(int argc, char **argv) {
|
||||||
|
|
||||||
// handle SIGTERM signals
|
// handle SIGTERM signals
|
||||||
signal(SIGTERM, sig_handler);
|
signal(SIGTERM, sig_handler);
|
||||||
|
signal(SIGINT, sig_handler);
|
||||||
|
|
||||||
// prevent ipc from crashing sway
|
// prevent ipc from crashing sway
|
||||||
signal(SIGPIPE, SIG_IGN);
|
signal(SIGPIPE, SIG_IGN);
|
||||||
|
|
Loading…
Reference in a new issue